1
0

index.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {{ define "main" }}
  2. <div class="content">
  3. {{ with .Content -}}{{ . }}{{ end }}
  4. </div>
  5. <section class="section">
  6. <a href="{{"writing/" | relURL}}" class="tdln section-title">
  7. <h2>Writing</h2>
  8. <span>→</span>
  9. </a>
  10. <ul class="lsn">
  11. {{ range first 3 (where site.RegularPages "Type" "in" "writing") -}}
  12. <li>
  13. <a href="{{.RelPermalink}}" class="post-item tdln">
  14. <span>{{.Title}}</span>
  15. <span class="dotted-line"></span>
  16. <time class="dim">{{ .Date.Format "2006-01-02" }}</time>
  17. </a>
  18. </li>
  19. {{- end }}
  20. </ul>
  21. </section>
  22. <section class="section content">
  23. <a href="{{"photo/" | relURL}}" class="tdln section-title">
  24. <h2>Photo</h2>
  25. <span>→</span>
  26. </a>
  27. <ul class="lsn">
  28. {{ range first 3 ((where site.RegularPages "Type" "in" "photo").ByParam "shot_date").Reverse -}}
  29. <li>
  30. <a href="{{ .RelPermalink }}" class="post-item tdln">
  31. <span class="home-photo-group">
  32. {{ with .Resources.Match "*thumbnail*" -}}
  33. {{ range first 3 . -}}
  34. <img src="{{.RelPermalink}}" class="home-photo-item" alt="thumbnail" width="{{.Width}}" height="{{.Height}}">
  35. {{- end }}
  36. {{- end }}
  37. </span>
  38. <span class="dotted-line"></span>
  39. <time class="dim">{{ dateFormat "2006-01-02" .Params.shot_date }}</time>
  40. </a>
  41. </li>
  42. {{ end }}
  43. </ul>
  44. </section>
  45. {{- end }}