szurubooru/client/html/top_nav.tpl

15 lines
590 B
Smarty
Raw Normal View History

2016-03-27 21:10:41 +02:00
<nav id='top-nav' class='text-nav'>
<ul><!--
--><% _.each(items, (item, key) => { %><!--
--><% if (item.available) { %><!--
--><li data-name='<%= key %>'><!--
--><a href='<%= item.url %>' accesskey='<%= item.accessKey %>'><!--
--><% if (item.imageUrl) { print(makeThumbnail(item.imageUrl)); } %><!--
--><span class='text'><%- item.name %></span><!--
2016-04-11 18:36:48 +02:00
--></a><!--
2016-03-27 21:10:41 +02:00
--></li><!--
--><% } %><!--
--><% }) %><!--
2016-03-27 21:10:41 +02:00
--></ul>
</nav>