Files
phaten-audio/en/material/templates/partials/icons.html
2025-06-23 16:21:37 +08:00

49 lines
1.5 KiB
HTML

{#-
This file was automatically generated - do not edit
-#}
{% if config.theme.icon.admonition %}
{% set _ = namespace(style = "\x3cstyle\x3e:root{") %}
{% for type, icon in config.theme.icon.admonition | items %}
{% import ".icons/" ~ icon ~ ".svg" as icon %}
{% set _.style = _.style ~
"--md-admonition-icon--" ~ type ~ ":" ~
"url('data:image/svg+xml;charset=utf-8," ~
icon | replace("\n", "") | urlencode ~
"');"
%}
{% endfor %}
{% set _.style = _.style ~ "}\x3c/style\x3e" %}
{{ _.style }}
{% endif %}
{% if config.theme.icon.annotation %}
{% set _ = namespace(style = "\x3cstyle\x3e:root{") %}
{% import ".icons/" ~ config.theme.icon.annotation ~ ".svg" as icon %}
{% set _.style = _.style ~
"--md-annotation-icon:" ~
"url('data:image/svg+xml;charset=utf-8," ~
icon | replace("\n", "") | urlencode ~
"');"
%}
{% set _.style = _.style ~ "}\x3c/style\x3e" %}
{{ _.style }}
{% endif %}
{% if config.theme.icon.tag %}
{% set _ = namespace(style = "\x3cstyle\x3e:root{") %}
{% for type, icon in config.theme.icon.tag | items %}
{% import ".icons/" ~ icon ~ ".svg" as icon %}
{% if type != "default" %}
{% set modifier = ".md-tag--" ~ type %}
{% endif %}
{% set _.style = _.style ~
".md-tag" ~ modifier ~ "{" ~
"--md-tag-icon:" ~
"url('data:image/svg+xml;charset=utf-8," ~
icon | replace("\n", "") | urlencode ~
"');" ~
"}"
%}
{% endfor %}
{% set _.style = _.style ~ "}\x3c/style\x3e" %}
{{ _.style }}
{% endif %}