index.html 590 B

1234567891011121314151617181920
  1. {{ define "main" }}
  2. {{- partial "about.html" . -}}
  3. <div id="blog-posts" class="panel my-2">
  4. <h1 class="mb-4"><a href="/blog/">Blog Posts</a></h1>
  5. <div id="blog-flex">
  6. {{ range first 3 (where .Site.RegularPages "Section" "blog") }}
  7. {{ partial "micropanel.html" . }}
  8. {{end}}
  9. </div>
  10. </div>
  11. <div id="project-posts" class="panel my-2">
  12. <h1 class="mb-4"><a href="/projects/">Featured Projects</a></h1>
  13. <div id="project-flex">
  14. {{ range first 3 (where .Site.RegularPages "Section" "projects") }}
  15. {{ partial "micropanel.html" . }}
  16. {{end}}
  17. </div>
  18. </div>
  19. {{ end }}