Create header.html

This commit is contained in:
cactuzhead 2025-05-15 15:43:39 +01:00 committed by GitHub
parent edd65c8da6
commit 9657d7644c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,10 @@
<div class="site-header">
{% if site.logo %}
<a class="site-logo" href="{{ "/" | relative_url }}">
<img src="{{ site.logo | relative_url }}" alt="{{ site.title }}" />
</a>
{% endif %}
{% if site.title %}
<a class="site-title" href="{{ "/" | relative_url }}">{{ site.title }}</a>
{% endif %}
</div>