]> Raphaël G. Git Repositories - blogbundle/blob - Resources/views/body.html.twig
Add blog bundle files
[blogbundle] / Resources / views / body.html.twig
1 {% extends 'RapsysBlogBundle::base.html.twig' %}
2 {% block body %}
3 <body>
4 <section id="wrapper">
5 {% block header %}
6 <header id="header">
7 {% block nav %}
8 <nav>
9 <a href="{{ url('about') }}">About</a>
10 <a href="{{ url('contact') }}">Contact</a>
11 </nav>
12 {% endblock %}
13
14 {% block hgroup %}
15 <hgroup>
16 {% block blog_title %}<h1><a href="{{ url('homepage') }}">Dev log</a></h1>{% endblock %}
17 {% block blog_tagline %}
18 {% if tags is defined and tags %}
19 <ul>
20 {% for id, tag in tags %}
21 <li><h2><a href="#">Tag</a></h2></li>
22 {% endfor %}
23 </ul>
24 {% endif %}
25 {% endblock %}
26 </hgroup>
27 {% endblock %}
28 </header>
29 {% endblock %}
30
31 {% block sidebar %}<aside id="sidebar"></aside>{% endblock %}
32
33 {% block content %}<section id="content"></section>{% endblock %}
34
35 {% block footer %}
36 <footer id="footer">
37 <summary>Copyright 2016</summary> - Raphaël Gertz all rights reserved.
38 </footer>
39 {% endblock %}
40 </section>
41 </body>
42 {% endblock %}