summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorLibravatar Silas Bartha <[email protected]>2024-08-21 15:38:02 -0400
committerLibravatar Silas Bartha <[email protected]>2024-08-21 15:38:02 -0400
commitf3e8e5b379114bff3efdd4a387276231e6d1c56f (patch)
tree3f865f11e589577b743e6152e9e41d5c748b7cba /templates
parent2e5297636edf320c78e2dc295425b2a70766c2fe (diff)
headless render + terminal display pages
Diffstat (limited to 'templates')
-rw-r--r--templates/projects.html12
1 files changed, 11 insertions, 1 deletions
diff --git a/templates/projects.html b/templates/projects.html
index 4b042a4..7b2df74 100644
--- a/templates/projects.html
+++ b/templates/projects.html
@@ -11,7 +11,17 @@
<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 %}</li>
+ <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 %}