mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-14 10:09:31 -07:00
24 lines
517 B
HTML
24 lines
517 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
{{- partial "head.html" . -}}
|
|
<title>{{ .Title }}</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
{{- partial "header.html" . -}}
|
|
</header>
|
|
<div id="main">
|
|
{{ $sourcePath := "images" }}
|
|
{{ $gallery := site.GetPage $sourcePath }}
|
|
{{ with $gallery.Resources.ByType "image" }}
|
|
{{ range . }}
|
|
<img class="image" src="{{ .RelPermalink }}" alt="x"/>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
{{- partial "footer.html" . -}}
|
|
</body>
|
|
</html>
|