15 lines
421 B
HTML
15 lines
421 B
HTML
|
{{ define "main" }}
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
{{ .Content }}
|
||
|
<section class="gallery">
|
||
|
{{ range .Pages }}
|
||
|
<a class="blur-on-hover" href="{{ .RelPermalink }}">
|
||
|
{{ with index (.Resources.ByType "image") 0 }}
|
||
|
<div class="image"><img alt="{{ .Title }}" class="{{ if lt .Height .Width }}landscape{{ else }}portrait{{ end }}" src="{{ .RelPermalink }}"></div>
|
||
|
{{ end }}
|
||
|
<p>{{ .Title }}</p>
|
||
|
</a>
|
||
|
{{ end }}
|
||
|
</section>
|
||
|
{{ end }}
|