{% extends "_base.html" %} {% block page %}devices{% 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 devices in data.device %}
{{ devices.name }}
{% for tag in devices.tags %}
#{{ tag }}
{% endfor %}
{% for tag in devices.tags %}
#{{ tag }}
{% endfor %}
{{ devices.desc | trim | markdown | safe }}
{% if devices.img %} {{ devices.name }} {% endif %}
{% endfor %}
{% include "_footer.html" -%}
{% endblock content %}