szurubooru/public_html/templates/top-navigation.tpl

34 lines
918 B
Smarty
Raw Normal View History

2014-09-02 09:36:42 +02:00
<ul>
<%
var links = [['home', '#/home', 'Home']];
if (canListPosts) {
links.push(['posts', '#/posts', 'Posts']);
if (canUploadPosts) {
links.push(['upload', '#/upload', 'Upload']);
}
links.push(['comments', '#/comments', 'Comments']);
}
if (canListTags) {
links.push(['tags', '#/tags', 'Tags']);
}
if (canListUsers) {
links.push(['users', '#/users', 'Users']);
}
if (!loggedIn) {
links.push(['login', '#/login', 'Login']);
links.push(['register', '#/register', 'Register']);
} else {
links.push(['my-account', '#/user/' + user.name, user.name]);
links.push(['logout', '#/logout', 'Logout']);
}
links.push(['help', '#/help', 'Help']);
%>
2014-09-07 19:49:11 +02:00
<% _.each(links, function(link) { %><!--
--><% var className = link[0], target=link[1], title=link[2] %><!--
--><li class="<%= className %>">
<a href="<%= target %>"><%= title %></a>
</li><!--
--><% }) %>
2014-09-02 09:36:42 +02:00
</ul>