mirror of
https://github.com/loikein/hugo-tufte.git
synced 2024-11-15 12:56:57 +01:00
23 lines
480 B
HTML
23 lines
480 B
HTML
|
<!-- +++
|
||
|
layout: "baseof"
|
||
|
+++ -->
|
||
|
|
||
|
{{ define "main" }}
|
||
|
|
||
|
|
||
|
|
||
|
<div id="layout" class="pure-g">
|
||
|
<article class="pure-u-1">
|
||
|
{{ partial "brand.html" . }}
|
||
|
{{ range first 5 .Site.Pages }}
|
||
|
{{ partial "content.header.html" . }}
|
||
|
<p>{{ .Summary }}</p>
|
||
|
{{ if .Truncated }}
|
||
|
<p><a href="{{ .RelPermalink }}">Read On →</a></p>
|
||
|
{{ end }}
|
||
|
{{ end }}
|
||
|
{{ partial "footer.html" . }}
|
||
|
</article>
|
||
|
</div>
|
||
|
|
||
|
{{ end }}
|