Added header.html.twig

This commit is contained in:
Oliver Davies 2015-03-17 04:07:58 +00:00
parent e4babbed3e
commit 411e4b7e60
2 changed files with 3 additions and 1 deletions

View file

@ -7,7 +7,7 @@
<title>{% if (page.url == '/') and (site.description) %}{{ site.description }}{% else %}{{ page.title }}{% endif %} | {{ site.title }}</title> <title>{% if (page.url == '/') and (site.description) %}{{ site.description }}{% else %}{{ page.title }}{% endif %} | {{ site.title }}</title>
</head> </head>
<body> <body>
{% include 'main-menu' %} {% include 'header' %}
{% block content_wrapper %} {% block content_wrapper %}
{% block content %}{% endblock %} {% block content %}{% endblock %}
{% endblock %} {% endblock %}

View file

@ -0,0 +1,2 @@
{{ site.title }}
{% include 'main-menu' %}