about.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {{ define "title"}}{{ t "page.about.title" }}{{ end }}
  2. {{ define "content"}}
  3. <section class="page-header">
  4. <h1>{{ t "page.about.title" }}</h1>
  5. <ul>
  6. <li>
  7. <a href="{{ route "settings" }}">{{ t "menu.preferences" }}</a>
  8. </li>
  9. <li>
  10. <a href="{{ route "integrations" }}">{{ t "menu.integrations" }}</a>
  11. </li>
  12. <li>
  13. <a href="{{ route "sessions" }}">{{ t "menu.sessions" }}</a>
  14. </li>
  15. {{ if .user.IsAdmin }}
  16. <li>
  17. <a href="{{ route "users" }}">{{ t "menu.users" }}</a>
  18. </li>
  19. {{ end }}
  20. </ul>
  21. </section>
  22. <div class="panel">
  23. <h3>Miniflux</h3>
  24. <ul>
  25. <li><strong>{{ t "page.about.version" }}</strong> {{ .version }}</li>
  26. <li><strong>{{ t "page.about.build_date" }}</strong> {{ .build_date }}</li>
  27. </ul>
  28. </div>
  29. <div class="panel">
  30. <h3>{{ t "page.about.credits" }}</h3>
  31. <ul>
  32. <li><strong>{{ t "page.about.author" }}</strong> Frédéric Guillot</li>
  33. <li><strong>{{ t "page.about.license" }}</strong> Apache 2.0</li>
  34. </ul>
  35. </div>
  36. {{ end }}