{% extends "index.html" %} {% block main %} {% for asset in page.assets %} {% if asset is ending_with("data.toml") %} {% set_global data = load_data(path=asset, format="toml") %} {% endif %} {% endfor %}

{{ page.title }}

{% for project in data.project %}

{{ project.name }}

{{ project.desc }}

{% for tag in project.tags %} #{{ tag }} {% endfor %}
{% for link in project.links %} {{ link.name }} {% endfor %}
{% endfor %} {% endblock main %}