You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
681 B
21 lines
681 B
2 years ago
|
{{ define "main" }}
|
||
|
<div class="container">
|
||
|
<div class="section">
|
||
|
<div class="content">
|
||
|
<h2 class="title" style="color:#fbf1c7">{{ .Title }}</h2>
|
||
|
{{ .Content }}
|
||
|
<div class="linklist">
|
||
|
{{ range .Pages }}
|
||
|
<a href="{{ .Permalink }}">
|
||
|
<h4>{{ .Params.title }}</h4>
|
||
|
<p style="font-size:1.6rem">{{ dateFormat "Jan 2, 2006" .Date }} </p>
|
||
|
<p style="font-size:1.8rem">{{.Summary }}</p>
|
||
|
</a>
|
||
|
{{end}}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
|