You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
505 B

<h3>Recent posts:</h3>
<ul class="index-recent-posts">
{{ range $post := .Posts }}
<a href='/post/{{ $post.ID }}'>
<li>
<div class='index-recent-post-title-container'>
<h4 class='index-recent-posts-title'>{{ $post.Title}}</h4>
<p class='datetimebox recent-post-updated-at'>{{ FormatTimestamp $post.UpdatedAt }}</p>
</div>
<div class='index-post-intro'>
{{ $post.Intro }}
</div>
</li>
</a>
{{ end }}
</ul>