diff options
| author | Roberto Esteves <contact@robertoesteves.dev> | 2025-12-31 14:19:13 +0000 |
|---|---|---|
| committer | Roberto Esteves <contact@robertoesteves.dev> | 2025-12-31 14:19:13 +0000 |
| commit | 78070157c5ecee8ef52fe25f74e28fe188cfa95c (patch) | |
| tree | bca4c635dd86d017e053f64ac75938858eeb7111 /layouts/projects/list.html | |
Diffstat (limited to 'layouts/projects/list.html')
| -rw-r--r-- | layouts/projects/list.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/projects/list.html b/layouts/projects/list.html new file mode 100644 index 0000000..e59efa2 --- /dev/null +++ b/layouts/projects/list.html @@ -0,0 +1,14 @@ +{{ define "main" }} +<section class="projects"> + <div class="projectList"> + {{ range .Pages }} + <div class="projectCard"> + <div class="projectDetails"> + <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2> + <p>{{ .Description }}</p> + </div> + </div> + {{ end }} + </div> +</section> +{{ end }} |