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