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

  1. <h3>Recent posts:</h3>
  2. <ul class="index-recent-posts">
  3. {{ range $post := .Posts }}
  4. <a href='/post/{{ $post.ID }}'>
  5. <li>
  6. <div class='index-recent-post-title-container'>
  7. <h4 class='index-recent-posts-title'>{{ $post.Title}}</h4>
  8. <p class='datetimebox recent-post-updated-at'>{{ FormatTimestamp $post.UpdatedAt }}</p>
  9. </div>
  10. <div class='index-post-intro'>
  11. {{ $post.Intro }}
  12. </div>
  13. </li>
  14. </a>
  15. {{ end }}
  16. </ul>