Skip to content
Snippets Groups Projects
base.twig 1.34 KiB
Newer Older
Hanne Moa's avatar
Hanne Moa committed
<!DOCTYPE html>
<html lang="{{ currentLanguage }}" xml:lang="{{ currentLanguage }}">
Hanne Moa's avatar
Hanne Moa committed
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta name="viewport" content="initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
Hanne Moa's avatar
Hanne Moa committed
    <title>{{ pagetitle }}</title>
    <link rel="stylesheet" href="{{ asset("css/stylesheet.css") }}">
    <link rel="icon" href="{{ asset("icons/favicon.ico") }}">
    <link rel="stylesheet" href="{{ asset("assets/css/src/default-rtl.css") }}">
    {% endif %}
Hanne Moa's avatar
Hanne Moa committed
    <meta name="robots" content="noindex, nofollow">
    <link rel="preload" href="{{ asset('js/bundle.js') }}" as="script">
    {% block preload %}{% endblock %}
  </head>
  <body id="{{ templateId }}">
    <div id="layout">
    {% block header %}{% include "_header.twig" %}{% endblock %}
Thijs Kinkhorst's avatar
Thijs Kinkhorst committed
      <main>
      <div id="content">
        <div class="wrap">
          {% block contentwrapper %}{% block content %}{% endblock %}{% endblock contentwrapper %}
      </div>{# content #}
      <div id="push"></div>
Thijs Kinkhorst's avatar
Thijs Kinkhorst committed
      </main>
    </div>{# layout #}
Jaime Pérez Crespo's avatar
Jaime Pérez Crespo committed
    <div id="foot">
      {% block footer %}{% include "_footer.twig" %}{% endblock %}
Jaime Pérez Crespo's avatar
Jaime Pérez Crespo committed
    </div>
    <script src="{{ asset('js/bundle.js') }}"></script>
    {% block postload %}{% endblock %}