Add missing update of index.twig

This commit is contained in:
Daniel Rudolf 2015-08-30 21:29:52 +02:00
parent df10d60846
commit 5eed6d0562

View File

@ -1,48 +1,49 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en" class="no-js"> <html lang="en" class="no-js">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<title>{% if meta.title %}{{ meta.title }} | {% endif %}{{ site_title }}</title> <title>{% if meta.title %}{{ meta.title }} | {% endif %}{{ site_title }}</title>
{% if meta.description %} {% if meta.description %}
<meta name="description" content="{{ meta.description }}"> <meta name="description" content="{{ meta.description }}">
{% endif %}{% if meta.robots %} {% endif %}{% if meta.robots %}
<meta name="robots" content="{{ meta.robots }}"> <meta name="robots" content="{{ meta.robots }}">
{% endif %} {% endif %}
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700" type="text/css" /> <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700" type="text/css" />
<link rel="stylesheet" href="{{ theme_url }}/style.css" type="text/css" /> <link rel="stylesheet" href="{{ theme_url }}/style.css" type="text/css" />
<script src="{{ theme_url }}/scripts/modernizr-2.6.1.min.js"></script> <script src="{{ theme_url }}/scripts/modernizr-2.6.1.min.js"></script>
</head> </head>
<body> <body>
<header id="header"> <header id="header">
<div class="inner clearfix"> <div class="inner clearfix">
<h1><a href="{{ base_url }}" id="logo">{{ site_title }}</a></h1> <h1><a href="{{ "index"|link }}" id="logo">{{ site_title }}</a></h1>
<nav> <nav>
<a href="#" class="menu-icon"></a> <a href="#" class="menu-icon"></a>
<ul> <ul>
{% for page in pages %} {% for page in pages %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li> <li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
</nav> </nav>
</div> </div>
</header> </header>
<section id="content"> <section id="content">
<div class="inner"> <div class="inner">
{{ content }} {{ content }}
</div> </div>
</section> </section>
<footer id="footer"> <footer id="footer">
<div class="inner"> <div class="inner">
<a href="http://picocms.org/">Pico</a> was made by <a href="http://gilbert.pellegrom.me">Gilbert Pellegrom</a> <a href="http://picocms.org/">Pico</a>
from <a href="http://dev7studios.com">Dev7studios</a>. was made by <a href="http://gilbert.pellegrom.me">Gilbert Pellegrom</a>
</div> from <a href="http://dev7studios.com">Dev7studios</a>.
</footer> </div>
</footer>
</body>
</html> </body>
</html>