about.html 698 B

12345678910111213141516171819202122232425
  1. {{ define "title"}}{{ t "page.about.title" }}{{ end }}
  2. {{ define "content"}}
  3. <section class="page-header">
  4. <h1>{{ t "page.about.title" }}</h1>
  5. {{ template "settings_menu" dict "user" .user }}
  6. </section>
  7. <div class="panel">
  8. <h3>Miniflux</h3>
  9. <ul>
  10. <li><strong>{{ t "page.about.version" }}</strong> {{ .version }}</li>
  11. <li><strong>{{ t "page.about.build_date" }}</strong> {{ .build_date }}</li>
  12. </ul>
  13. </div>
  14. <div class="panel">
  15. <h3>{{ t "page.about.credits" }}</h3>
  16. <ul>
  17. <li><strong>{{ t "page.about.author" }}</strong> Frédéric Guillot</li>
  18. <li><strong>{{ t "page.about.license" }}</strong> Apache 2.0</li>
  19. </ul>
  20. </div>
  21. {{ end }}