diff options
Diffstat (limited to 'templates/projects.html')
-rw-r--r-- | templates/projects.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/projects.html b/templates/projects.html index 8b01177..4b042a4 100644 --- a/templates/projects.html +++ b/templates/projects.html @@ -11,7 +11,7 @@ <b>{{category.name}}</b> <ul> {% for page in category.pages %} - <li><a href="{{ page.permalink | safe }}">{{ page.title }}: {{ page.description }}</a></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 %}</li> {% endfor %} </ul> {% endfor %} |