sophie-lewis-hugo/layouts/writing/list.html

18 lines
604 B
HTML
Raw Normal View History

{{ define "main"}}
2022-12-27 07:21:49 +00:00
<div id="writing-page" class="section writing">
<div>
{{ partial "essay-section" . }}
{{ partial "books-section" . }}
<div class="writing-section">
<div class="thead">COLLECTIVE WRITING</div>
{{ range .Params.Collective }}
<div class="writing-item">
<p><strong><a href={{ .url }}>{{ .title}}</a></strong>, {{ .blurb }} <em><a
href={{ .puburl}}>{{ .publication }}</a></em>.</p>
<p><i>Published in {{ .year }}</i></p>
</div>
{{ end }}
</div>
</div>
</div>
{{ end }}