mirror of
https://github.com/rottenwheel/revuo-weekly.git
synced 2024-11-09 10:12:25 -07:00
33 lines
1.7 KiB
HTML
33 lines
1.7 KiB
HTML
<nav {% if site.reverse == true %}id="nav-left"{% else %}id="nav"{% endif %}>
|
|
<div id="nav-list">
|
|
<div class="nav-actions">
|
|
<div id="nav-actions-flex-container" class="nav-actions-flex">
|
|
<a class="icon" href="https://revuo-xmr.com/support/" target="_blank"><img src="/img/donate.png" alt="Donate" title="Donate" /></a>
|
|
<a class="icon" href="/atom.xml" target="_blank"><img src="/img/rss_1.png" alt="ATOM Feed" title="ATOM Feed" /></a>
|
|
</div>
|
|
<div id="nav-actions-static-container" class="nav-actions-static">
|
|
<a class="icon" href="https://primal.net/p/npub1tn8spk9zhxrctg2qym3gj8r7eq2wk6z3phrl8304wc54vt9qam4qvzw6jx" target="_blank"><img src="/img/nostr-icon.png" alt="Nostr" title="Nostr" /></a>
|
|
<a class="icon" href="https://xcancel.com/revuoxmr" target="_blank"><img src="/img/xcom-icon.png" alt="x.com" title="x.com" /></a>
|
|
<a class="icon" href="xmpp:revuo-monero@conference.jabbers.one?join" target="_blank"><img src="/img/xmpp.png" alt="XMPP MUC" title="XMPP MUC" /></a>
|
|
<a class="icon" href="https://matrix.to/#/#revuo:monero.social" target="_blank"><img src="/img/matrix.png" alt="Matrix Room" title="Matrix Room" /></a>
|
|
</div>
|
|
</div>
|
|
<a href="{{ site.baseurl }}">Revuo Weekly</a>
|
|
|
|
<!-- Nav pages -->
|
|
{% 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>
|
|
|
|
<!-- Nav footer -->
|
|
{% if site.custom_nav_footer == true %}
|
|
{% include nav-footer-custom.html %}
|
|
{% else %}
|
|
{% include nav-footer.html %}
|
|
{% endif %}
|
|
|
|
</nav>
|