-
Notifications
You must be signed in to change notification settings - Fork 703
Expand file tree
/
Copy pathbase.twig
More file actions
33 lines (33 loc) · 1.2 KB
/
base.twig
File metadata and controls
33 lines (33 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="{{ currentLanguage }}" dir="{{ isRTL ? 'rtl' : 'ltr' }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<title>{{ pagetitle }}</title>
<link rel="stylesheet" href="{{ asset("css/stylesheet.css") }}">
<link rel="icon" href="{{ asset("icons/favicon.ico") }}">
<meta name="robots" content="noindex, nofollow">
{{ include('_head.twig', ignore_missing = true) }}
{% block preload %}{% endblock %}
</head>
<body id="{{ templateId }}">
<div id="layout">
{% block header %}{% include "_header.twig" %}{% endblock %}
<main>
<div id="content">
<div class="wrap">
{% block contentwrapper %}{% block content %}{% endblock %}{% endblock contentwrapper %}
</div>
</div>{# content #}
<div id="push"></div>
</main>
</div>{# layout #}
<div id="foot">
{% block footer %}{% include "_footer.twig" %}{% endblock %}
</div>
<script src="{{ asset('js/bundle.js') }}"></script>
{% block postload %}{% endblock %}
</body>
</html>