1<!DOCTYPE html>
2<html lang="<?php echo $conf['lang'] ?>" dir="<?php echo $lang['direction'] ?>" class="popup no-js">
3<head>
4    <meta charset="utf-8"/>
5    <title>
6        <?php echo $title ?>
7    </title>
8    <script>(function (H) {
9            H.className = H.className.replace(/\bno-js\b/, 'js')
10        })(document.documentElement)</script>
11    <?php tpl_metaheaders() ?>
12    <meta name="viewport" content="width=device-width,initial-scale=1"/>
13    <?php echo tpl_favicon(['favicon', 'mobile']) ?>
14    <?php tpl_includeFile('meta.html') ?>
15</head>
16
17<body>
18<!--[if lte IE 8 ]>
19<div id="IE8"><![endif]-->
20<div class="dokuwiki">
21    <div class="page">
22        <?php echo $body ?>
23    </div>
24</div>
25<!--[if lte IE 8 ]></div><![endif]-->
26</body>
27</html>
28