{% extends "base.html" %} {% block content %}
{% if all_tags %}
{% for tag in all_tags %} {{ tag }} {% endfor %}
{% endif %} {% if projects %}
{% for project in projects %}
{% if project.meta.get('featured') %} Featured {% endif %}

{{ project.meta.title }}

{% if project.meta.date %}

{% if project.reading_time %} · {{ project.reading_time }} min read{% endif %}

{% endif %}

{{ project.meta.get('description', project.markdown[:180] + '...') }}

{% if project.meta.get('tags') %}
{% for tag in project.meta.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}

No projects yet.

{% endif %}
{% endblock %}