index.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {{ define "main" }}
  2. {{ if .Content -}}
  3. <div class="content">
  4. {{ .Content }}
  5. </div>
  6. {{- end }}
  7. <section class="section content">
  8. <a href="{{"writing/" | relURL}}" class="tdln section-title">
  9. <h2>Writing</h2>
  10. <object width="24" height="24" title="RSS">
  11. <a href="{{"writing/index.xml" | relURL}}" target="_blank" aria-label="RSS"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-rss"><path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle></svg></a>
  12. </object>
  13. </a>
  14. <ul class="lsn">
  15. {{ range first 3 (where site.RegularPages "Type" "in" "writing") -}}
  16. <li class="post-item">
  17. <a href="{{.RelPermalink}}" class="tdln post-title">{{.Title}}</a>
  18. <span class="dim">{{ .Date.Format "2006/01/02" }}</span>
  19. </li>
  20. {{ end }}
  21. </ul>
  22. </section>
  23. <section class="section content">
  24. <a href="{{"photo/" | relURL}}" class="tdln section-title">
  25. <h2>Photo</h2>
  26. <object width="24" height="24" title="RSS">
  27. <a href="{{"photo/index.xml" | relURL}}" target="_blank" aria-label="RSS"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-rss"><path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle></svg></a>
  28. </object>
  29. </a>
  30. <ul class="lsn">
  31. {{ range first 3 ((where site.RegularPages "Type" "in" "photo").ByParam "shot_date").Reverse -}}
  32. <li class="post-item" >
  33. <a href="{{ .RelPermalink }}" class="home-photo-group">
  34. {{ with .Resources.Match "*thumbnail*" -}}
  35. {{ range first 3 . -}}
  36. <img src="{{.RelPermalink}}" loading="lazy" class="home-photo-item" alt="thumbnail" width="{{.Width}}" height="{{.Height}}">
  37. {{- end }}
  38. {{- end }}
  39. </a>
  40. <span class="dim">{{ dateFormat "2006/01/02" .Params.shot_date }}</span>
  41. </li>
  42. {{ end }}
  43. </ul>
  44. </section>
  45. {{- end }}