1 {% extends 'RapsysBlogBundle::base.html.twig' %}
6 {% block header_title %}
7 {% block blog_title %}<h1><a href="{{ path('homepage') }}">{% trans %}Dev log{% endtrans %}</a></h1>{% endblock %}
10 <h2>{% trans %}Navigation{% endtrans %}</h2>
11 <a href="{{ path('about') }}">{% trans %}About{% endtrans %}</a>
12 <a href="{{ path('contact') }}">{% trans %}Contact{% endtrans %}</a>
15 {% block blog_subtitle %}{% endblock %}
16 {% block blog_tagline %}
17 {% if tags is defined and tags %}
19 {% for id, tag in tags %}
20 <li><h2><a href="#">Tag</a></h2></li>
29 {% block sidebar %}<aside id="sidebar"></aside>{% endblock %}
31 {% block content %}<section id="content"></section>{% endblock %}
36 <details><summary>{% trans %}Raphaël Gertz all rights reserved{% endtrans %}</summary><span>{% trans %}Copyright 2016-2018{% endtrans %}.</span></details>
37 {% block footer_nav %}
39 {% for locale in blog_locales if locale != app.request.locale %}
40 <a href="{{ path(app.request.attributes.get('_route'), app.request.attributes.get('_route_params')|merge(app.request.query.all|merge({'_locale': locale}))) }}">{{ ('Display in ' ~ locale)|trans }}</a>