brainbaking/themes/brainbaking-minimal/layouts/works/list.html

38 lines
1007 B
HTML

{{ partial "header" . }}
<a id="top"></a>
<main class="list">
<header>
<h1 id="header" class="p-name">
<svg class='icon'><use xlink:href="#{{ .Params.icontag }}"></use></svg>&nbsp;{{ .Title }}
</h1>
</header>
{{ with .Content }}
<article>
{{ . }}
</article>
{{ end }}
<article>
<h2>Prose in Words</h2>
<div class="worksgrid">
{{ range (where .Pages "Params.type" "writing") }}
{{ partial "works-block.html" . }}
{{ end }}
</div>
</article>
<article>
<h2>Prose in Code</h2>
For those interested in smaller but technical buns of baked goodness, have fun exploring my open source projects at <a href="https://git.brainbaking.com/">https://git.brainbaking.com/</a> or my contributions at <a href="{{ .Site.Author.githublink }}">GitHub</a>.
<div class="worksgrid">
{{ range (where .Pages "Params.type" "code") }}
{{ partial "works-block.html" . }}
{{ end }}
</div>
</article>
</main>
{{ partial "footer" . }}