diff options
Diffstat (limited to 'includes/mobile/template_head_start.php')
-rw-r--r-- | includes/mobile/template_head_start.php | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/includes/mobile/template_head_start.php b/includes/mobile/template_head_start.php index 30fb8f8..c4b6df9 100644 --- a/includes/mobile/template_head_start.php +++ b/includes/mobile/template_head_start.php @@ -1,13 +1,24 @@ <!DOCTYPE html> -<html> +<!--[if lt IE 7]> <html lang="de" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> +<!--[if IE 7]> <html lang="de" class="no-js lt-ie9 lt-ie8"> <![endif]--> +<!--[if IE 8]> <html lang="de" class="no-js lt-ie9"> <![endif]--> +<!--[if gt IE 8]><!--> <html lang="de" class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> - <meta name="viewport" content="width=device-width"> + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> + <meta name="viewport" content="width=device-width,initial-scale=1"> <title><?= htmlentities($PAGE_TITLE ?? "") ?> - Mystic House Corner</title> <link rel="stylesheet" href="/mobile/dist/css/bootstrap.min.css"> - <link rel="stylesheet" href="/mobile/site.css"> + <link rel="stylesheet" href="/mobile/dist/css/bootstrap-theme.min.css"> + <link rel="stylesheet" href="/mobile/font.css?v=<?= filemtime(__DIR__ . "/../../mobile/font.css") ?>"> + <link rel="stylesheet" href="/mobile/site.css?v=<?= filemtime(__DIR__ . "/../../mobile/site.css") ?>"> <script src="/mobile/jquery-1.12.4.min.js"></script> <script src="/mobile/dist/js/bootstrap.min.js"></script> + <script src="/mobile/modernizr-2.6.2.min.js"></script> <!--[if lt IE 8]> <meta http-equiv="refresh" content="0; url=/view.php?view=d&next=<?= htmlentities(urlencode($_SERVER["REQUEST_URI"])) ?>"> - <![endif]-->
\ No newline at end of file + <![endif]--> + <!--[if lt IE 9]> + <script src="/mobile/html5shiv.min.js"></script> + <script src="/mobile/respond.min.js"></script> + <![endif]--> |