mirror of
https://github.com/zaaarf/friendenstein.git
synced 2024-11-10 01:29:21 +01:00
29 lines
977 B
HTML
29 lines
977 B
HTML
<a href="{% if config.extra.logo.url %}{{ config.extra.logo.url }}{% else %}{{ config.base_url }}{% endif %}" style="text-decoration: none; float: left;">
|
|
<div class="logo">
|
|
{% if config.extra.logo.path %}
|
|
<img src="{{ config.extra.logo.path }}"
|
|
{% if config.extra.logo.alt %}
|
|
alt="{{ config.extra.logo.alt }}"
|
|
{% endif %}
|
|
/>
|
|
{% else %}
|
|
<span class="logo__text">
|
|
{% if config.extra.logo.text %}{{ config.extra.logo.text }}{% else %}home{% endif %}
|
|
</span>
|
|
<span class="logo__cursor" style="
|
|
{% if config.extra.logo.cursor.enabled %}
|
|
{% if config.extra.logo.cursor.enabled != true %}
|
|
visibility: hidden;
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if config.extra.logo.cursor.color %}
|
|
background-color: {{ config.extra.logo.cursor.color }};
|
|
{% endif %}
|
|
{% if config.extra.logo.cursor.animate %}
|
|
animation-duration: {{ config.extra.logo.cursor.animate }};
|
|
{% endif %}
|
|
">
|
|
</span>
|
|
{% endif %}
|
|
</div>
|
|
</a>
|