This repository has been archived on 2023-01-31. You can view files and clone it, but cannot push or open issues or pull requests.
sophie-lewis-hugo/layouts/writing/list.html

18 lines
604 B
HTML

{{ define "main"}}
<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 }}