{# Define array of CSS files to load. main.css is always loaded. #} {% set stylesheets = [ "style.css" ] %} {# Load extra CSS files from config.toml #} {% if config.extra.stylesheets -%} {% set stylesheets = stylesheets | concat(with=config.extra.stylesheets) %} {% endif %} {# Load extra CSS files from page metadata #} {% if page.extra.stylesheets %} {% set stylesheets = stylesheets | concat(with=page.extra.stylesheets) %} {% elif section.extra.stylesheets %} {% set stylesheets = stylesheets | concat(with=section.extra.stylesheets) %} {% endif %} {# Load all stylesheets #} {%- for stylesheet in stylesheets %} {%- endfor %} {% if config.extra.goatcounter %} {% endif %} {% if config.extra.show_copy_button %} {% include "partials/copy-button.html" %} {% endif %} {% if config.extra.scripts %} {% for script in config.extra.scripts %} {% endfor %} {% endif %} {% if config.extra.comments %} {% endif %} {% if config.extra.emoji_favicon %} {% elif config.extra.animated_favicon %} {% else %} {% endif %} {% if config.generate_feed %} {% block feed -%} {% endblock -%} {% endif %}