1234567891011121314151617181920 |
- {{ define "main" }}
- {{- partial "about.html" . -}}
- <div id="blog-posts" class="panel my-2">
- <h1 class="mb-4"><a href="/blog/">Blog Posts</a></h1>
- <div id="blog-flex">
- {{ range first 3 (where .Site.RegularPages "Section" "blog") }}
- {{ partial "micropanel.html" . }}
- {{end}}
- </div>
- </div>
- <div id="project-posts" class="panel my-2">
- <h1 class="mb-4"><a href="/projects/">Featured Projects</a></h1>
- <div id="project-flex">
- {{ range first 3 (where .Site.RegularPages "Section" "projects") }}
- {{ partial "micropanel.html" . }}
- {{end}}
- </div>
- </div>
- {{ end }}
|