index.html 2.2 KB

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