]> Raphaƫl G. Git Repositories - blogbundle/blob - Resources/views/base.html.twig
Add blog bundle files
[blogbundle] / Resources / views / base.html.twig
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="UTF-8" />
5 <title>{% block title %}Welcome!{% endblock %} - Devlog</title>
6 <meta name="viewport" content="width=device-width, initial-scale=1" />
7 {% block stylesheets %}
8 {% stylesheets '//fonts.googleapis.com/css?family=Irish+Grover' '//fonts.googleapis.com/css?family=La+Belle+Aurore' '@RapsysBlogBundle/Resources/public/css/{reset,screen}.css' filter='toto' %}
9 <link href="{{ asset_url }}" type="text/css" rel="stylesheet" />
10 {% endstylesheets %}
11 {% endblock %}
12 {% block javascripts %}
13 {% javascripts '@RapsysBlogBundle/Resources/js/*.js' output='js/compiled/main.js' %}
14 <script src="{{ asset_url }}"></script>
15 {% endjavascripts %}
16 {% endblock %}
17 <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
18 </head>
19 {% block body %}<body></body>{% endblock %}
20 </html>