diff options
author | Silas Bartha <[email protected]> | 2024-08-15 01:50:22 -0400 |
---|---|---|
committer | Silas Bartha <[email protected]> | 2024-08-15 01:50:22 -0400 |
commit | 6d2f00dfe6d3279d2239cf0135dcd017d1bae46b (patch) | |
tree | 9040825448ace79226fa7bcfc2dd39c3cf7de589 /templates/projects.html | |
parent | e2f7f90c4a14883c30acab7353ac6e8d645a715c (diff) |
project page + pomd page
Diffstat (limited to 'templates/projects.html')
-rw-r--r-- | templates/projects.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/projects.html b/templates/projects.html index e69de29..8b01177 100644 --- a/templates/projects.html +++ b/templates/projects.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} + +{% block content %} +<a href="{{ get_url(path='@/_index.md') }}"> <- back to landing</a> +<h1 class="title"> + {{ section.title }} +</h1> +{% set categories = get_taxonomy(kind="categories") %} + +{% for category in categories.items %} +<b>{{category.name}}</b> +<ul> + {% for page in category.pages %} + <li><a href="{{ page.permalink | safe }}">{{ page.title }}: {{ page.description }}</a></li> + {% endfor %} +</ul> +{% endfor %} + +{% endblock content %} |