about.html 757 B

1234567891011121314151617181920212223242526
  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>Git Commit</strong> {{ .commit }}</li>
  12. <li><strong>{{ t "page.about.build_date" }}</strong> {{ .build_date }}</li>
  13. </ul>
  14. </div>
  15. <div class="panel">
  16. <h3>{{ t "page.about.credits" }}</h3>
  17. <ul>
  18. <li><strong>{{ t "page.about.author" }}</strong> Frédéric Guillot</li>
  19. <li><strong>{{ t "page.about.license" }}</strong> Apache 2.0</li>
  20. </ul>
  21. </div>
  22. {{ end }}