1234567891011121314151617181920212223242526272829303132 |
- {% block head %}
- <meta charset="utf-8" />
- <title>
- {% if header.title %}
- {{ header.title | e('html') }} |
- {% endif %}
- {{ site.title | e('html') }}
- </title>
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- {% include 'partials/metadata.html.twig' %}
- <link rel="icon" type="image/png" href="{{ url('theme://images/logo.png') }}" />
- <link rel="canonical" href="{{ page.url(true, true) }}" />
- {% block stylesheets %}
- {% do assets.addCss('http://yui.yahooapis.com/pure/0.6.0/pure-min.css', 100) %}
- {% do assets.addCss('https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css', 99) %}
- {% do assets.addCss('theme://css/custom.css', 90) %}
- {% endblock %}
- {{ assets.css() }}
- {% block javascripts %}
- {% do assets.addJs('jquery', 100) %}
- {% endblock %}
- {{ assets.js() }}
- {% endblock %}
|