aboutsummaryrefslogtreecommitdiff
path: root/layouts/projects/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/projects/list.html')
-rw-r--r--layouts/projects/list.html21
1 files changed, 21 insertions, 0 deletions
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" . }}
+<h2>My Projects</h2>
+<hr>
+<h4>Currently Maintained</h4>
+{{ range .Pages }}
+{{ if .Params.current }}
+<div class="list p-3 rounded-3">
+<a href="{{.Permalink}}">{{.Title}}</a>
+</div>
+{{ end }}
+{{ end }}
+<br>
+<h4>Old/Unmaintained</h4>
+{{ range .Pages }}
+{{ if not .Params.current }}
+<div class="list p-3 rounded-3">
+<a href="{{.Permalink}}">{{.Title}}</a>
+</div>
+{{ end }}
+{{ end }}
+{{ partial "foot.html" . }}