home link in footer when not on home
This commit is contained in:
parent
76f8410c82
commit
76efea80ad
1 changed files with 6 additions and 6 deletions
|
|
@ -9,10 +9,10 @@
|
||||||
<div>
|
<div>
|
||||||
<ul>
|
<ul>
|
||||||
{% if page.url != '/' %}
|
{% if page.url != '/' %}
|
||||||
<li><a href="{{ relBase }}/" class="button small">{{ site.data.translations[page.lang].home }}</a></li>
|
<li><a href="{{ relBase }}/">{{ site.data.translations[page.lang].home }}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% for entry in site.data.navigation %}
|
{% for entry in site.data.navigation %}
|
||||||
<li><a href="{{ entry.url }}" class="smooth-scroll-middle">{{ entry.name }}</a></li>
|
<li><a href="{{ entry.url }}">{{ entry.name }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -20,10 +20,10 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
<ul class="icons">
|
<ul class="icons">
|
||||||
{% for nw in site.data.social %}
|
{% for nw in site.data.stores %}
|
||||||
{% if nw.we_have_account == true %}
|
|
||||||
<li><a target="_blank" alt="{{ site.title }} on {{ nw.name }}" title="{{ site.title }} on {{ nw.name }}" rel="noopener nofollow" href="{{ nw.url }}" class="icon brands style2 {{ nw.icon }}"><span class="label">{{ nw.name }}</span></a></li>
|
<li><a target="_blank" alt="{{ site.title }} on {{ nw.name }}" title="{{ site.title }} on {{ nw.name }}" rel="noopener" href="{{ nw.url }}" class="icon brands style2 {{ nw.icon }}"><span class="label">{{ nw.name }}</span></a></li>
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<!-- <li><a href="mailto:{{ site.author.email }}" class="icon style2 fa-envelope"><span class="label">Email</span></a></li> -->
|
<!-- <li><a href="mailto:{{ site.author.email }}" class="icon style2 fa-envelope"><span class="label">Email</span></a></li> -->
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue