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

42 lines
1.0 KiB
HTML

{{ partial "header" . }}
{{ partial "bigimg" . }}
<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>
<hr/>
{{ with .Content }}
<article>
{{ . }}
</article>
{{ end }}
<article>
<h2>Prose in Words</h2>
</article>
<div class="worksgrid">
{{ range (where .Pages "Params.type" "writing") }}
{{ partial "works-block.html" . }}
{{ end }}
</div>
<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>.
</article>
<div class="worksgrid">
{{ range (where .Pages "Params.type" "code") }}
{{ partial "works-block.html" . }}
{{ end }}
</div>
<footer>
</footer>
</main>
{{ partial "footer" . }}