mirror of
https://github.com/devolitalia/forty-jekyll-theme
synced 2025-01-05 04:46:58 +01:00
de005ceccd
Modificato footer aggiungendo modulo di contatto, link per donazioni, matrix, newsletter e profili social (alcuni ancora incompleti). Modificata homepage per lasciare spazio alla "mission" nella sezione più in basso. Risolto il problema delle immagini che non comparivano nelle pagine dei 'tiles'.
31 lines
987 B
HTML
31 lines
987 B
HTML
<!-- Wrapper -->
|
|
<div id="wrapper">
|
|
|
|
<!-- Header -->
|
|
<header id="header"{% if page.layout == "landing" %} class="alt style2"{% endif %}{% if page.layout == "home" %} class="alt"{% endif %}>
|
|
<a href="{{ "" | absolute_url }}/" class="logo"><strong>{{ site.title }}</strong> <span>{{ site.subtitle }}</span></a>
|
|
<nav>
|
|
<a href="#menu">Menu</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<!-- Menu -->
|
|
<nav id="menu">
|
|
<ul class="links">
|
|
{% for page in site.pages %}
|
|
{% if page.layout == "home" %}
|
|
<li><a href="{{ "" | absolute_url }}/">{{ page.title }}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% for page in site.html_pages %}
|
|
{% if page.layout != "home" and page.nav-menu == true %}
|
|
<li><a href="{{ page.url | absolute_url }}">{{ page.title }}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
<!-- <ul class="actions vertical">
|
|
<li><a href="#" class="button special fit">Get Started</a></li>
|
|
<li><a href="#" class="button fit">Log In</a></li>
|
|
</ul> -->
|
|
</nav>
|