2017-04-11 03:27:13 +02:00
|
|
|
{{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
|
|
|
|
{{ define "main" }}
|
|
|
|
{{ $currentPageUrl := .URL }}
|
2017-04-12 04:22:06 +02:00
|
|
|
{{ $currentSection := (where .Site.Pages "Section" .Section) }}
|
2017-04-11 03:27:13 +02:00
|
|
|
|
|
|
|
<div class="flex flex-wrap">
|
2017-04-12 04:22:06 +02:00
|
|
|
<aside class="w-2f0 bg-light-gray">
|
2017-04-11 03:27:13 +02:00
|
|
|
<ul>
|
2017-04-12 04:22:06 +02:00
|
|
|
<li class="list b mb3">
|
|
|
|
More {{ .Section }}
|
|
|
|
</li>
|
2017-04-11 03:27:13 +02:00
|
|
|
{{ range $currentSection }}
|
2017-04-12 04:22:06 +02:00
|
|
|
<li class="list f5 w-100 hover-bg-white nl1">
|
|
|
|
<a href="{{ .URL }}" class="link black ph2 pv2 db">
|
2017-04-11 03:27:13 +02:00
|
|
|
{{ .Title }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</aside>
|
|
|
|
|
|
|
|
<article class="center cf pv5 measure-wide-l">
|
|
|
|
|
|
|
|
<h4 class="f6">
|
|
|
|
{{ humanize .Section | upper }}
|
|
|
|
</h4>
|
|
|
|
<h1>
|
2017-04-12 04:22:06 +02:00
|
|
|
{{ .Title }}
|
2017-04-11 03:27:13 +02:00
|
|
|
</h1>
|
2017-04-12 04:22:06 +02:00
|
|
|
<div class="nested-copy-line-height f4 nested-linkfs nested-img mid-gray measure-wide-l">
|
|
|
|
{{ .Content }}
|
2017-04-11 03:27:13 +02:00
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
</div>
|
2017-04-12 04:22:06 +02:00
|
|
|
|
|
|
|
357edd
|
|
|
|
<style media="screen">
|
|
|
|
p a {
|
|
|
|
color: #2F6FC4;
|
|
|
|
|
|
|
|
/*#357edd*/
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2017-04-11 03:27:13 +02:00
|
|
|
{{ end }}
|