b2da0a9288
move responsive.scss to main.scss to fix different acting @media add social media account links to burger menu for; x.com and nitter update CSS formating
30 lines
1.4 KiB
HTML
30 lines
1.4 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>
|
|
</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>
|