{% extends "main.html" %} {% block content %} {% set bookmarks = config.extra.bookmarks %} {% if bookmarks %}
{% for card in bookmarks %}

{% include ".icons/" ~ card.icon ~ ".svg" %} {{ card.title }}

{% for section in card.sections %} {% if not loop.first %}
{% endif %}
    {% for link in section.links %}
  • {% include ".icons/" ~ link.icon ~ ".svg" %} {{ link.label }}
  • {% endfor %}
{% endfor %}
{% endfor %}
{% else %} {{ super() }} {% endif %} {% endblock %}