mirror of
https://github.com/medialab-prado/poblados-colonizacion-colonias-penitenciarias.git
synced 2024-12-26 20:41:23 +01:00
26 lines
907 B
HTML
Executable file
26 lines
907 B
HTML
Executable file
<!-- Header -->
|
|
<header id="header"{% if page.layout == 'landing' %} class="alt"{% endif %}>
|
|
<!-- <h1><a href="{{ site.baseurl }}/index.html">{{ site.title }}</a></h1>-->
|
|
<h1><a href="{{ site.baseurl }}/index.html">Inicio</a></h1>
|
|
<nav id="nav">
|
|
<ul>
|
|
<li class="special">
|
|
<a href="#menu" class="menuToggle"><span>Menu</span></a>
|
|
<div id="menu">
|
|
<ul>
|
|
<li><a href="index.html">Inicio</a></li>
|
|
{% for my_page in site.pages %}
|
|
{% if my_page.title %}
|
|
<li><a href="{{ my_page.url | prepend: site.baseurl }}">{{ my_page.title }}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
<!--
|
|
<li><a href="{{ "/feed.xml" | prepend: site.baseurl }}"
|
|
class="icon fa-feed"> RSS Feed</a></li>
|
|
-->
|
|
</ul>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|