index.html 695 B

123456789101112131415161718
  1. {{ define "main" }}
  2. {{- partial "about.html" . -}}
  3. <section class="grid grid-cols-1 lg:grid-cols-2 gap-4">
  4. <section id="blog-posts" class="panel h-feed">
  5. <h1 class="mb-4"><a href="/blog/" class="p-name">Recent Blog Posts</a></h1>
  6. {{ range first 3 (where .Site.RegularPages "CurrentSection.Title" (.Site.GetPage "/blog").Title) }}
  7. {{ partial "entrypanel.html" . }}
  8. {{ end }}
  9. </section>
  10. <section id="project-posts" class="panel h-feed">
  11. <h1 class="mb-4"><a href="/projects/" class="p-name">Featured Projects</a></h1>
  12. {{ range first 3 (where .Site.RegularPages "Section" "projects") }}
  13. {{partial "entrypanel.html" . }}
  14. {{ end }}
  15. </section>
  16. </section>
  17. {{ end }}