10 lines
321 B
Smarty
10 lines
321 B
Smarty
<div class='post-container'></div>
|
|
<% if (ctx.featuredPost) { %>
|
|
<aside>
|
|
Featured post: <%= ctx.makePostLink(ctx.featuredPost.id, true) %>,
|
|
posted
|
|
<%= ctx.makeRelativeTime(ctx.featuredPost.creationTime) %>
|
|
by
|
|
<%= ctx.makeUserLink(ctx.featuredPost.user) %>
|
|
</aside>
|
|
<% } %>
|