index.html 616 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 my-2">
  5. <h1 class="mb-4"><a href="/blog/">Blog Posts</a></h1>
  6. {{ range first 3 (where .Site.RegularPages "Section" "blog") }}
  7. {{ partial "entrypanel.html" . }}
  8. {{ end }}
  9. </section>
  10. <section id="project-posts" class="panel my-2">
  11. <h1 class="mb-4"><a href="/projects/">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 }}