mirror of
https://github.com/minetestblog/minetestblog.github.io.git
synced 2025-07-08 07:18:56 +02:00
66 lines
2.2 KiB
HTML
66 lines
2.2 KiB
HTML
<header>
|
|
<div class="menu">
|
|
<div class="logo">
|
|
|
|
<a href="{{ '/' | prepend: site.baseurl }}">{{ site.blog.title }}</a>
|
|
<object type="image/svg+xml" data="{{ site.blog.logo_path | relative_url }}" class="logosvg">Your browser does not support svg images</object>
|
|
</div>
|
|
|
|
<ul>
|
|
<li><a href="{{ '/about' | prepend: site.baseurl }}">about</a></li>
|
|
<li><a href="{{ '/archive' | prepend: site.baseurl }}">archive</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="social">
|
|
<ul>
|
|
|
|
<li>
|
|
<a href="https://matrix.to/#/#minetest-general:tchncs.de" target="_blank" class="smaller">
|
|
<img src="../../assets/img/icons8-matrix.svg" width="24" height="25">
|
|
</a>
|
|
</li>
|
|
|
|
{% if site.author.stackoverflow %}
|
|
<li>
|
|
<a href="https://stackoverflow.com/{{ site.author.stackoverflow }}" target="_blank" class="smaller">
|
|
<span class="icon-stackoverflow"></span>
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% if site.author.twitter %}
|
|
<li>
|
|
<a href="https://twitter.com/{{ site.author.twitter }}" target="_blank" class="smaller">
|
|
<span class="icon-twitter"></span>
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% if site.author.github %}
|
|
<li>
|
|
<a href="https://github.com/{{ site.author.github }}" target="_blank" class="smaller">
|
|
<span class="icon-github"></span>
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% if site.author.mail %}
|
|
<li>
|
|
<a href="mailto:{{ site.author.mail }}" target="_blank">
|
|
<span class="icon-mail_outline"></span>
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% if site.author.rss == true %}
|
|
<li>
|
|
<a href="{{ '/feed.xml' | prepend: site.baseurl }}" target="_blank">
|
|
<span class="icon-rss_feed"></span>
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
<li>
|
|
<a href="#" onclick="switchTheme()" title="Switch theme?">
|
|
<span class="icon-invert_colors" id="theme-switcher"></span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</header>
|