szurubooru/client/html/top_nav.tpl

15 lines
633 B
Smarty
Raw Normal View History

2016-06-05 21:46:57 +02:00
<nav id='top-nav' class='buttons'>
2016-03-27 21:10:41 +02:00
<ul><!--
--><% for (let [key, item] of ctx.items) { %><!--
--><% if (item.available) { %><!--
--><li data-name='<%= key %>'><!--
--><a href='<%= item.url %>' accesskey='<%= item.accessKey %>'><!--
--><% if (item.imageUrl) { print(ctx.makeThumbnail(item.imageUrl)); } %><!--
2016-05-29 12:24:48 +02:00
--><span class='text'><%= ctx.makeAccessKey(item.name, item.accessKey) %></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>