From 9fa4b5a1ba354eadf9da9c1dba0305173583c81f Mon Sep 17 00:00:00 2001 From: lauralani Date: Wed, 6 Sep 2023 07:32:52 +0200 Subject: [PATCH] add dedicated projects section template --- .gitignore | 1 + layouts/projects/section.html | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 layouts/projects/section.html diff --git a/.gitignore b/.gitignore index 2751454..eae2cdb 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ hugo.linux *.vsix .DS_Store +.vscode/ diff --git a/layouts/projects/section.html b/layouts/projects/section.html new file mode 100644 index 0000000..d0bd019 --- /dev/null +++ b/layouts/projects/section.html @@ -0,0 +1,17 @@ +{{ define "page" }} + +

{{ .Title }}

+

{{ .Content }}

+ {{ range .Pages }} +
+

{{ .Title }}

+
+ +
+ +
{{ .Summary }}
+ Read more → +
+ {{ end }} +
+{{ end }} \ No newline at end of file