Files
bridget/layouts/index.html
2023-03-09 12:01:06 +08:00

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>