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

20 lines
602 B
HTML
Raw Normal View History

2020-01-02 22:03:34 +01:00
{{ define "feed_menu" }}
<ul>
<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 href="{{ route "refreshAllFeeds" }}">{{ icon "refresh" }}{{ t "menu.refresh_all_feeds" }}</a>
2020-01-02 22:03:34 +01:00
</li>
</ul>
{{ end }}