diff options
author | Silas Bartha <[email protected]> | 2024-08-21 15:38:02 -0400 |
---|---|---|
committer | Silas Bartha <[email protected]> | 2024-08-21 15:38:02 -0400 |
commit | f3e8e5b379114bff3efdd4a387276231e6d1c56f (patch) | |
tree | 3f865f11e589577b743e6152e9e41d5c748b7cba /templates | |
parent | 2e5297636edf320c78e2dc295425b2a70766c2fe (diff) |
headless render + terminal display pages
Diffstat (limited to 'templates')
-rw-r--r-- | templates/projects.html | 12 |
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 %} |