integrations.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {{ define "title"}}{{ t "Integrations" }}{{ end }}
  2. {{ define "content"}}
  3. <section class="page-header">
  4. <h1>{{ t "Integrations" }}</h1>
  5. <ul>
  6. <li>
  7. <a href="{{ route "settings" }}">{{ t "Settings" }}</a>
  8. </li>
  9. <li>
  10. <a href="{{ route "sessions" }}">{{ t "Sessions" }}</a>
  11. </li>
  12. {{ if .user.IsAdmin }}
  13. <li>
  14. <a href="{{ route "users" }}">{{ t "Users" }}</a>
  15. </li>
  16. {{ end }}
  17. <li>
  18. <a href="{{ route "about" }}">{{ t "About" }}</a>
  19. </li>
  20. </ul>
  21. </section>
  22. <div class="panel">
  23. <h3>{{ t "Bookmarklet" }}</h3>
  24. <p>{{ t "This special link allows you to subscribe to a website directly by using a bookmark in your web browser." }}</p>
  25. <div class="bookmarklet">
  26. <a href="javascript:location.href='{{ baseURL }}{{ route "bookmarklet" }}?uri='+encodeURIComponent(window.location.href)">{{ t "Add to Miniflux" }}</a>
  27. </div>
  28. <p>{{ t "Drag and drop this link to your bookmarks." }}</p>
  29. </div>
  30. {{ end }}