{% extends "_base.html" %} {% block page %}projects{% endblock page %} {% block lang %}{% if section.extra.lang %}{{ section.extra.lang }}{% else %}{{ section.lang }}{% endif %}{% endblock lang %} {% block title %}{{ section.title }}{% endblock title %} {% block desc %} {% endblock desc %} {% block content %} {% include "_header.html" %}
{% set data = load_data(path="content" ~ section.path ~ "data.toml", format="toml") %} {% for device in data.device %}
{{ device.name }}
{% for tag in device.tags %}
#{{ tag }}
{% endfor %}
{% for tag in device.tags %}
#{{ tag }}
{% endfor %}
{{ device.desc | trim | markdown | safe }}
{% if device.img %} {{ device.name }} {% endif %}
{% endfor %}
{% include "_footer.html" -%}
{% endblock content %}