1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-07-02 16:38:37 +00:00
miniflux-v2/internal/template/templates/common/feed_menu.html

20 lines
602 B
HTML
Raw Normal View History

2020-01-02 13:03:34 -08:00
{{ define "feed_menu" }}
<ul>
<li>
<a href="{{ route "feeds" }}">{{ icon "feeds" }}{{ t "menu.feeds" }}</a>
2020-01-02 13:03:34 -08:00
</li>
<li>
<a href="{{ route "addSubscription" }}">{{ icon "add-feed" }}{{ t "menu.add_feed" }}</a>
2020-01-02 13:03:34 -08:00
</li>
<li>
<a href="{{ route "export" }}">{{ icon "feed-export" }}{{ t "menu.export" }}</a>
2020-01-02 13:03:34 -08:00
</li>
<li>
<a href="{{ route "import" }}">{{ icon "feed-import" }}{{ t "menu.import" }}</a>
2020-01-02 13:03:34 -08:00
</li>
<li>
<a href="{{ route "refreshAllFeeds" }}">{{ icon "refresh" }}{{ t "menu.refresh_all_feeds" }}</a>
2020-01-02 13:03:34 -08:00
</li>
</ul>
{{ end }}