portfolio/themes/naej-ananke/layouts/page/single.html

20 lines
569 B
HTML
Raw Normal View History

2020-07-05 19:29:18 +00:00
{{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
{{ define "main" }}
2020-07-07 22:23:48 +00:00
{{/*used in the contact page*/}}
2020-07-05 19:29:18 +00:00
<div class="flex-l mt2 mw8 center">
<article class="center cf pv5 ph3 ph4-ns mw7">
<header>
<p class="f6 b helvetica tracked">
{{ humanize .Section | upper }}
</p>
2020-07-07 22:23:48 +00:00
<h1 class="f1 light-gray">
2020-07-05 19:29:18 +00:00
{{ .Title }}
</h1>
</header>
2020-07-07 22:23:48 +00:00
<div class="nested-copy-line-height lh-copy f4 nested-links nested-img light-gray">
2020-07-05 19:29:18 +00:00
{{ .Content }}
</div>
</article>
</div>
{{ end }}