head.html.twig 937 B

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