15 lines
251 B
HTML
15 lines
251 B
HTML
{{ define "main" }}
|
|
|
|
<h2>{{ .Title }}</h2>
|
|
|
|
{{ .Content }}
|
|
|
|
{{ range .Pages }}
|
|
<section class="present">
|
|
<h4><a href="{{ .RelPermalink }}">
|
|
<img alt="{{ .Title }}" src="//placehold.co/150x150">
|
|
</a></h4>
|
|
{{ end }}
|
|
</section>
|
|
|
|
{{ end }} |