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.
|
<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>
|