Initial restructuring

This commit is contained in:
Jef Roosens 2024-06-05 20:43:19 +02:00
parent c71d9f723b
commit b1719e8d24
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
69 changed files with 1133 additions and 3 deletions

View file

@ -0,0 +1,6 @@
<h3>{{ i18n "projects.title" }}</h3>
<ul id="projects">
{{- range where .Site.Pages "Section" "projects" }}
{{ .Render "li" }}
{{- end }}
</ul>

View file

@ -0,0 +1,4 @@
{{ define "main" }}
{{ .Content }}
{{- partial "projects.html" . -}}
{{ end }}

6
layouts/projects/li.html Normal file
View file

@ -0,0 +1,6 @@
<li>
<a href="{{ .PermaLink }}">
{{ .Title }}
<small>{{ .Summary }}</small>
</a>
</li>