szurubooru/client/html/top_navigation.tpl

19 lines
877 B
Smarty
Raw Permalink Normal View History

2016-06-13 22:34:39 +02:00
<nav id='top-navigation' class='buttons'><!--
--><ul><!--
2017-12-16 03:45:51 +01:00
--><button id="mobile-navigation-toggle"><!--
--><span class="site-name"><%- ctx.name %></span><!--
--><span class="toggle-icon"><i class="fa fa-bars"></i></span><!--
--></button><!--
2016-06-13 22:34:39 +02:00
--><% for (let item of ctx.items) { %><!--
--><% if (item.available) { %><!--
--><li data-name='<%- item.key %>'><!--
--><a href='<%- item.url %>' accesskey='<%- item.accessKey %>'><!--
--><% if (item.imageUrl) { print(ctx.makeThumbnail(item.imageUrl)); } %><!--
2016-06-13 22:34:39 +02:00
--><span class='text'><%= ctx.makeAccessKey(item.title, item.accessKey) %></span><!--
2016-04-11 18:36:48 +02:00
--></a><!--
2016-03-27 21:10:41 +02:00
--></li><!--
--><% } %><!--
--><% } %><!--
2016-06-13 22:34:39 +02:00
--></ul><!--
--></nav>