From 199f5ca505ca7392b3e770e83c5150a9f897d6d0 Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Tue, 27 Dec 2022 00:48:42 -0700 Subject: somewhat functional website now --- layouts/projects/list.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 layouts/projects/list.html (limited to 'layouts/projects/list.html') diff --git a/layouts/projects/list.html b/layouts/projects/list.html new file mode 100644 index 0000000..19c6f48 --- /dev/null +++ b/layouts/projects/list.html @@ -0,0 +1,21 @@ +{{ partial "head.html" . }} +

My Projects

+
+

Currently Maintained

+{{ range .Pages }} +{{ if .Params.current }} +
+{{.Title}} +
+{{ end }} +{{ end }} +
+

Old/Unmaintained

+{{ range .Pages }} +{{ if not .Params.current }} +
+{{.Title}} +
+{{ end }} +{{ end }} +{{ partial "foot.html" . }} -- cgit v1.2.3