miniflux-v2/internal/template/templates/common/feed_menu.html

20 lines
688 B
HTML
Raw Normal View History

2020-01-02 22:03:34 +01:00
{{ define "feed_menu" }}
<nav aria-label="{{ t "page.feeds.title" }} {{ t "menu.title" }}"><ul>
2020-01-02 22:03:34 +01:00
<li>
<a href="{{ route "feeds" }}">{{ icon "feeds" }}{{ t "menu.feeds" }}</a>
2020-01-02 22:03:34 +01:00
</li>
<li>
<a href="{{ route "addSubscription" }}">{{ icon "add-feed" }}{{ t "menu.add_feed" }}</a>
2020-01-02 22:03:34 +01:00
</li>
<li>
<a href="{{ route "export" }}">{{ icon "feed-export" }}{{ t "menu.export" }}</a>
2020-01-02 22:03:34 +01:00
</li>
<li>
<a href="{{ route "import" }}">{{ icon "feed-import" }}{{ t "menu.import" }}</a>
2020-01-02 22:03:34 +01:00
</li>
<li>
<a role="button" href="{{ route "refreshAllFeeds" }}">{{ icon "refresh" }}{{ t "menu.refresh_all_feeds" }}</a>
2020-01-02 22:03:34 +01:00
</li>
</ul></nav>
{{ end }}