mirror of
https://github.com/BeamMP/Docs.git
synced 2025-07-01 23:45:46 +00:00
7 lines
311 B
HTML
7 lines
311 B
HTML
{% if config.theme.logo %}
|
|
<img src="{{ config.theme.logo | url }}" alt="logo" class="logo-light" />
|
|
<img src="{{ config.theme.logo_dark | url }}" alt="logo" class="logo-dark" />
|
|
{% else %}
|
|
{% set icon = config.theme.icon.logo or "material/library" %}
|
|
{% include ".icons/" ~ icon ~ ".svg" %}
|
|
{% endif %} |