revuo-weekly/_includes/menu.html

30 lines
1.0 KiB
HTML
Raw Normal View History

<nav {% if site.reverse == true %}id="nav-left"{% else %}id="nav"{% endif %}>
<div id="nav-list">
2022-04-11 15:09:33 +00:00
<div class="nav-actions">
<!-- Dark Mode Button -->
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
2022-07-01 21:43:19 +00:00
<a class="icon" href="https://revuo-xmr.com/support/" target="_blank"><img src="/img/donate.png" alt="Donate" title="Donate" /></a>
2022-04-12 14:10:50 +00:00
<a class="icon" href="/atom.xml" target="_blank"><img src="/img/rss_1.png" alt="ATOM Feed" title="ATOM Feed" /></a>
2022-04-11 15:09:33 +00:00
</div>
2019-09-15 19:39:39 +00:00
<a href="{{ site.baseurl }}">Revuo Weekly</a>
<!-- Nav pages -->
2022-04-02 09:21:09 +00:00
{% for page in site.pages %}
{% if page.layout == "page" %}
<a href="{% if site.baseurl == "/" %}{{ page.url }}{% else %}{{ page.url | prepend: site.baseurl }}{% endif %}" title="{{ page.title }}">{{ page.title }}</a>
{% endif %}
{% endfor %}
</div>
2022-04-02 09:21:09 +00:00
<!-- Nav footer -->
{% if site.custom_nav_footer == true %}
2022-04-02 09:21:09 +00:00
{% include nav-footer-custom.html %}
{% else %}
2022-04-02 09:21:09 +00:00
{% include nav-footer.html %}
{% endif %}
</nav>