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

{{ 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 %} {% break %} {% endif %} {% endfor %} {% endblock main %}