Files
personal-website/layouts/_default/list.html
T
2023-11-09 20:55:17 +01:00

16 lines
334 B
HTML

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