{% extends "base.html" %} {% block content %} {% set data = load_data(path="data/projects.toml") %} {% set_global total = 0 %} {% set_global flagships = [] %} {% for category in data.category %} {% set n = category.project | length %} {% set_global total = total + n %} {% for p in category.project %} {% if p.flagship %}{% set_global flagships = flagships | concat(with=[p]) %}{% endif %} {% endfor %} {% endfor %}
{% for category in data.category %} {% if category.name == "Desktop / BOS" %}{% set cat_class = "cat-ecosystem" %} {% elif category.name == "Hardware & Firmware" %}{% set cat_class = "cat-hardware" %} {% else %}{% set cat_class = "cat-misc" %}{% endif %}
{% if category.name == "Desktop / BOS" %} {% elif category.name == "Hardware & Firmware" %} {% else %} {% endif %}

{{ category.name }}

{{ category.project | length }}
{% endfor %}
{% endblock content %}