szurubooru/client/html/top_navigation.tpl
rr- 6ea129a9ef client/views: escape HTML
This lets client use < > in tag names.
2016-06-23 12:47:56 +02:00

14 lines
653 B
Smarty

<nav id='top-navigation' class='buttons'><!--
--><ul><!--
--><% 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)); } %><!--
--><span class='text'><%= ctx.makeAccessKey(item.title, item.accessKey) %></span><!--
--></a><!--
--></li><!--
--><% } %><!--
--><% } %><!--
--></ul><!--
--></nav>