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.

36 lines
875B

  1. <!DOCTYPE html>
  2. <html>
  3. {{ partial "header.html" . }}
  4. <body>
  5. <div class="container wrapper">
  6. {{ partial "head.html" . }}
  7. <div class="recent-posts section">
  8. <h2 class="section-header">
  9. Recent posts
  10. </h2>
  11. <div class="posts">
  12. {{- range first .Site.Params.SidebarRecentLimit .Data.Pages -}}
  13. <div class="post">
  14. <div class="meta">{{ dateFormat "Jan 2, 2006" .Date }}</div>
  15. <a class="title" href="{{ .RelPermalink }}">{{.Title}}</a> &mdash;
  16. <span class="description">
  17. {{ if isset .Params "description" }}
  18. {{ .Description }}
  19. {{ else if gt (len .RawContent) 120 }}
  20. {{ slicestr .RawContent 0 120 }}...
  21. {{ else }}
  22. {{ .RawContent }}
  23. {{ end }}
  24. </span>
  25. </div>
  26. {{- end -}}
  27. <a href="/posts">All articles →</a>
  28. </div>
  29. </div>
  30. </div>
  31. {{ partial "footer.html" . }}
  32. </body>
  33. </html>