27 lines
677 B
HTML
27 lines
677 B
HTML
{{ define "main" }}
|
|
<main>
|
|
<article class="page">
|
|
<header class="section page-header">
|
|
<div class="container">
|
|
<h1 class="page-title">{{ .Title }}</h1>
|
|
<p class="page-summary">{{.Summary}}</p>
|
|
<p class="page-date">Published <time datetime='{{.Date.UTC.Format "2006-01-02T03:04:05Z"}}'>{{.Date.Format "2006-01-02"}}</time></p>
|
|
{{ with .Resources.GetMatch "cover**" }}
|
|
<img src="{{.RelPermalink}}">
|
|
{{ end }}
|
|
</div>
|
|
</header>
|
|
<aside>
|
|
<div class="container">
|
|
{{.TableOfContents}}
|
|
</div>
|
|
</aside>
|
|
<section class="section content">
|
|
<div class="container">
|
|
{{ .Content }}
|
|
</div>
|
|
</section>
|
|
</article>
|
|
</main>
|
|
{{ end }}
|