archie-shades-of-purple/layouts/page/projects.html

17 lines
385 B
HTML
Raw Normal View History

2024-12-18 18:19:58 +01:00
<!DOCTYPE html>
<html>
{{- partial "header.html" . -}}
<body>
<div class="content">
{{- partial "head.html" . -}}
{{ range .Params.projects }}
<h2>{{ .name }}</h2>
<p>{{ .description }}</p>
<a href="{{ .url }}">Take a look</a>
{{ end }}
{{- partial "footer.html" . -}}
</div>
</body>
</html>