Files
personal-website/layouts/_default/list.html
T
2023-11-14 19:57:44 +01:00

18 lines
369 B
HTML

{{ define "styles" }}
{{ $styles := resources.Get "css/list.css" | toCSS | minify }}
<link rel="stylesheet" href="{{ $styles.Permalink }}" />
{{ end }}
{{ define "main" }}
{{ partial "breadcrumb.html" . }}
{{ .Content }}
<section>
{{ range .Pages }}
{{ partial "card.html" . }}
{{ end }}
</section>
{{ end }}