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