src/templates/partials/consent.html
{% macro render_cookie(cookie, type) %} {% set checked = "" %} {% if cookie is string %} {% set name = cookie %} {% set checked = "checked" %} {% else %} {% set name = cookie.name %} {% if cookie.checked %} {% set checked = "checked" %} {% endif %} {% endif %}
{{ config.extra.consent.description }}
{% set cookies = config.extra.consent.cookies %} {% if "analytics" not in cookies %} {% if config.extra.analytics %} {{ render_cookie("Google Analytics", "analytics") }} {% endif %} {% endif %} {% if "github" not in cookies %} {% if config.repo_url and "github.com" in config.repo_url %} {{ render_cookie("GitHub", "github") }} {% endif %} {% endif %} {% for type in cookies %} {% if cookies[type] %} {{ render_cookie(cookies[type], type) }} {% endif %} {% endfor %}
{% for action in actions %} {% if action == "accept" %} {{- lang.t("consent.accept") -}} {% endif %} {% if action == "reject" %} {{- lang.t("consent.reject") -}} {% endif %} {% if action == "manage" %} {{- lang.t("consent.manage") -}} {% endif %} {% endfor %}