Browse code

Initial commit

Benjamin Roth authored on16/03/2023 20:22:35
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,118 @@
1
+<!DOCTYPE html>
2
+<html lang="<?= $this->language ?>" <?php if ($this->isRTL) : ?> dir="rtl" <?php endif; ?>>
3
+
4
+<head>
5
+
6
+
7
+    <?php $this->block('head'); ?>
8
+    <meta charset="<?= $this->charset ?>">
9
+    <title><?= $this->title ?></title>
10
+    <base href="<?= $this->base ?>">
11
+
12
+    <?php $this->block('meta'); ?>
13
+    <meta name="robots" content="<?= $this->robots ?>">
14
+    <meta name="description" content="<?= Contao\StringUtil::substr($this->description, 320) ?>">
15
+    <meta name="generator" content="Contao Open Source CMS">
16
+    <?php $this->endblock(); ?>
17
+
18
+    <?php if ($this->canonical): ?>
19
+        <link rel="canonical" href="<?= $this->canonical ?>">
20
+    <?php endif; ?>
21
+
22
+    <script src="/files/base/layout/_vendor/node_modules/js-cookie/dist/js.cookie.min.js"></script>
23
+
24
+
25
+    <?= $this->viewport ?>
26
+    <?= $this->framework ?>
27
+    <?= $this->stylesheets ?>
28
+    <?= $this->mooScripts ?>
29
+    <?= $this->head ?>
30
+    <?php $this->endblock(); ?>
31
+
32
+</head>
33
+
34
+
35
+<body id="top" <?php if ($this->class) : ?> class="<?= $this->class ?>" <?php endif; ?><?php if ($this->onload) : ?> onload="<?= $this->onload ?>" <?php endif; ?>
36
+      itemscope itemtype="http://schema.org/WebPage">
37
+<?php $this->block('body'); ?>
38
+<?php $this->sections('top'); ?>
39
+
40
+{{insert_module::47}}
41
+
42
+<div id="wrapper">
43
+    <?php $this->block('header'); ?>
44
+    <?php if ($this->header) : ?>
45
+        <header id="header">
46
+            <div class="inside">
47
+                <?= $this->header ?>
48
+            </div>
49
+        </header>
50
+    <?php endif; ?>
51
+    <?php $this->endblock(); ?>
52
+    <?php $this->sections('before'); ?>
53
+    <?php $this->block('container'); ?>
54
+    <div id="container"
55
+         class="<?php if ($this->left) : ?>with--left-col<?php endif; ?> <?php if ($this->right) : ?>with--right-col<?php endif; ?>">
56
+        <?php if ($this->left || $this->right) : ?>
57
+        <div class="pt-md-3 pb-3 container"><?php endif; ?>
58
+            <div class="row gx-md-5" style="--bs-gutter-y: 0rem;">
59
+
60
+                <?php $this->block('left'); ?>
61
+                <?php if ($this->left) : ?>
62
+                    <aside id="left" class="col-12 col-md-auto ">
63
+                        <div class="inside">
64
+                            <?= $this->left ?>
65
+                        </div>
66
+                    </aside>
67
+                <?php endif; ?>
68
+                <?php $this->endblock(); ?>
69
+
70
+                <?php $this->block('main'); ?>
71
+                <main id="main" class="col col-md-12">
72
+                    <div class="inside">
73
+                        <?= $this->main ?>
74
+                    </div>
75
+                    <?php $this->sections('main'); ?>
76
+                </main>
77
+                <?php $this->endblock(); ?>
78
+
79
+
80
+                <?php $this->block('right'); ?>
81
+                <?php if ($this->right) : ?>
82
+                    <aside id="right" class="col-12 col-md-auto ">
83
+                        <div class="inside">
84
+                            <?= $this->right ?>
85
+                        </div>
86
+                    </aside>
87
+                <?php endif; ?>
88
+                <?php $this->endblock(); ?>
89
+
90
+            </div>
91
+            <?php if ($this->left || $this->right) : ?>
92
+        </div><?php endif; ?>
93
+
94
+    </div>
95
+    <?php $this->endblock(); ?>
96
+    <?php $this->sections('after'); ?>
97
+    <?php $this->block('footer'); ?>
98
+    <?php if ($this->footer) : ?>
99
+        <footer id="footer">
100
+            <div class="inside">
101
+                <?= $this->footer ?>
102
+            </div>
103
+        </footer>
104
+    <?php endif; ?>
105
+    <?php $this->endblock(); ?>
106
+</div>
107
+<?php $this->sections('bottom'); ?>
108
+
109
+
110
+<?php $this->endblock(); ?>
111
+
112
+
113
+<?= $this->mootools ?>
114
+<?= $this->jsonLdScripts ?>
115
+
116
+</body>
117
+
118
+</html>
0 119
\ No newline at end of file