{% extends "base.html" %} {% block title %}Projects{% endblock %} {% block content %}

My Projects

A snapshot of things I’ve built or contributed to.

{% if projectpost|length == 0 %}

Nothing here yet

Projects will appear as you publish them.

{% else %}
{% for p in projectpost %}
{% if p.cover_image %} {{ p.title }} {% endif %}

{{ p.title }}

{% if p.category %} {{ p.category }} {% endif %} {% if p.summary %}

{{ p.summary }}

{% endif %} {% set tags = (p.tags|default('', true)).split(',') if p.tags else [] %} {% if tags %}
{% for tag in tags %} {% set t = tag.strip() %} {% if t %} #{{ t }} {% endif %} {% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}