{% extends "main.html" %} {% block content %} {% set bookmarks = config.extra.bookmarks %} {% set profile = config.extra.user_profile %}
{% if not ("titleblock" in page.meta.hide) %}
{% if page.meta.logo %} {% endif %}

{% if page.meta and page.meta.title %} {{ page.meta.title }} {% elif page.toc %} {{ page.toc[0].title }} {% else %} {{ page.title | d(config.site_name, true) }} {% endif %}

{% include "partials/actions.html" %}

{% endif %} {% 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 %}