All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 2m10s
20 lines
799 B
HTML
20 lines
799 B
HTML
<footer class="cyber-razor-top bg-black">
|
|
<ul class="tabs mobile-tabs">
|
|
<li class="tab col s1 {% if page.url == "/" %}bg-red{% else %}bg-dark{% endif %}"><a href="{{ "/" | relative_url }}" class="cyber-a"><i class="material-icons">home</i></a></li>
|
|
{% for tab in sorted_pages %}
|
|
{% if tab.title and tab.permalink and tab.nav != false %}
|
|
<li class="tab col s1 {% if page.url contains tab.url %}bg-red{% else %}bg-dark{% endif %}">
|
|
<a href="{{ tab.url | relative_url }}" target="_self" class="cyber-a">
|
|
{% if tab.icon %}
|
|
<i class="material-icons">{{ tab.icon }}</i>
|
|
{% else %}
|
|
{{ tab.title }}
|
|
{% endif %}
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
<span></span>
|
|
</footer>
|