{% extends "base.html" %}
{% block styles %}
{{ super() }}
{% endblock %}
{% block hero %}
{% if page.meta and page.meta.hero %}
{% set hero = page.meta.hero %}
Manual
{{ hero.title | d(config.site_name, true) }}
{% if hero.description %}
{{ hero.description }}
{% endif %}
{% if hero.actions %}
{% endif %}
{% if hero.install or hero.badges %}
{% endif %}
{% endif %}
{% endblock %}
{% block extrahead %}
{{ super() }}
{% if config.extra.molcrafts %}
{% set product = config.extra.molcrafts.product | d("", true) %}
{% set accent = config.extra.molcrafts.accent | d("", true) %}
{% set accent_soft = config.extra.molcrafts.accent_soft | d("", true) %}
{% endif %}
{% if product %}
{% endif %}
{#
Per-product brand colours live in each product's zensical.toml
([project.extra.molcrafts].accent / .accent_soft), not in this theme.
The theme only supplies the common palette/layout plus the default accent;
the two config values are injected below and override that default. When a
product sets accent_soft, it is used verbatim; otherwise it is derived from
the primary accent.
#}
{% if accent %}
{% endif %}
{% endblock %}