summaryrefslogtreecommitdiff
path: root/templates/projects.html
diff options
context:
space:
mode:
authorSilas Bartha <silas@soaos.dev>2025-05-03 03:53:42 -0400
committerSilas Bartha <silas@soaos.dev>2025-05-03 03:53:42 -0400
commit22592e96a75bd617fe6a9aae146b957695532e7c (patch)
tree5fb31095c224e056471c9f8bf7dd7b46308ffdbd /templates/projects.html
parentecec6d23de95423b675bc2960ccd4c3950bb4f5f (diff)
Added piss daemon page
Diffstat (limited to 'templates/projects.html')
-rw-r--r--templates/projects.html29
1 files changed, 0 insertions, 29 deletions
diff --git a/templates/projects.html b/templates/projects.html
deleted file mode 100644
index 7b2df74..0000000
--- a/templates/projects.html
+++ /dev/null
@@ -1,29 +0,0 @@
-{% 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 }}{% if page.description %}: {{ page.description }}{% endif %}
- </a>
- {% if page.extra.wip %}
- (<span class="wip-indicator">wip</span>)
- {% endif %}
- {% if page.extra.very_cool %}
- (<span class="rainbow_text_animated">VERY COOL</span>)
- {% endif %}
- </li>
- {% endfor %}
-</ul>
-{% endfor %}
-
-{% endblock content %}