{% extends "main.html" %} {% block content %} {% set bookmarks = config.extra.frontpage %} {% 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 %}

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

{% set sections = card.sections if card.sections is defined else [{"links": card.links}] %} {% for section in sections %} {% if not loop.first %}
{% endif %} {% endfor %}
{% endfor %}
{% else %} {{ super() }} {% endif %} {% endblock %}