|
1 | 1 | <!DOCTYPE html>
|
2 | 2 | <html>
|
3 | 3 | <head>
|
| 4 | + <!-- Basic Page Needs |
| 5 | + –––––––––––––––––––––––––––––––––––––––––––––––––– --> |
4 | 6 | <meta charset="UTF-8" />
|
5 |
| - <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
6 |
| - <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 7 | + <title>{% block title %}Welcome!{% endblock %}</title> |
7 | 8 | <meta name="description" content="">
|
8 | 9 | <meta name="author" content="">
|
9 |
| - <title>{% block title %}Welcome!{% endblock %}</title> |
10 |
| - {% block stylesheets %}{% endblock %} |
| 10 | + |
| 11 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 12 | + <!-- Mobile Specific Metas |
| 13 | + –––––––––––––––––––––––––––––––––––––––––––––––––– --> |
| 14 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 15 | + |
| 16 | + <!-- FONT |
| 17 | + –––––––––––––––––––––––––––––––––––––––––––––––––– --> |
| 18 | + <link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css"> |
| 19 | + |
| 20 | + <!-- CSS |
| 21 | + –––––––––––––––––––––––––––––––––––––––––––––––––– --> |
| 22 | + {% block stylesheets %} |
| 23 | + {% stylesheets '@ApiBundle/Resources/public/skeleton/css/*' filter='cssrewrite' %} |
| 24 | + <link rel="stylesheet" href="{{ asset_url }}" /> |
| 25 | + {% endstylesheets %} |
| 26 | + {% endblock %} |
| 27 | + <!-- Favicon |
| 28 | + –––––––––––––––––––––––––––––––––––––––––––––––––– --> |
11 | 29 | <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
|
12 | 30 | </head>
|
13 | 31 | <body>
|
14 |
| - {% include "nav.html.twig" %} |
15 |
| - {% block body %}{% endblock %} |
| 32 | + |
| 33 | + |
| 34 | + <!-- Primary Page Layout |
| 35 | + –––––––––––––––––––––––––––––––––––––––––––––––––– --> |
| 36 | + {% include "nav.html.twig" %} |
| 37 | + <div class="container"> |
| 38 | + <div class="row"> |
| 39 | + {% block body %}{% endblock %} |
| 40 | + </div> |
| 41 | + </div> |
| 42 | + |
| 43 | +<!-- End Document |
| 44 | + –––––––––––––––––––––––––––––––––––––––––––––––––– --> |
| 45 | + |
16 | 46 | {% block javascripts %}{% endblock %}
|
17 | 47 | </body>
|
18 | 48 | </html>
|
|
0 commit comments