summaryrefslogtreecommitdiff
path: root/templates/projects.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/projects.html')
-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 %}