szurubooru/public_html/templates/home.tpl

43 lines
890 B
Smarty
Raw Normal View History

2014-09-24 23:24:51 +02:00
<div id="home">
<h1><%= title %></h1>
2014-09-25 11:45:46 +02:00
<p>
<small>Serving <%= globals.postCount %> posts (<%= formatFileSize(globals.postSize) %>)</small>
</p>
2014-09-24 23:24:51 +02:00
<% if (post) { %>
<div class="post">
<%= postContentTemplate({post: post}) %>
<div class="post-footer">
<span class="left">
<a href="#/post/<%= post.id %>">
<%= post.idMarkdown %>
</a>
uploaded
<%= formatRelativeTime(post.uploadTime) %>
</span>
<span class="right">
featured by
2014-09-26 20:41:28 +02:00
<% if (post.user.name) { %>
<a href="#/user/<%= post.user.name %>">
<% } %>
2014-09-24 23:24:51 +02:00
<img class="author-avatar"
src="/data/thumbnails/25x25/avatars/<%= post.user.name || '!' %>"
alt="<%= post.user.name || 'Anonymous user' %>"/>
<%= post.user.name || 'Anonymous user' %>
2014-09-26 20:41:28 +02:00
<% if (post.user.name) { %>
</a>
<% } %>
2014-09-24 23:24:51 +02:00
</span>
</div>
</div>
<% } %>
</div>