diff options
Diffstat (limited to 'src/application/views/template_start.php')
| -rw-r--r-- | src/application/views/template_start.php | 22 | 
1 files changed, 22 insertions, 0 deletions
| diff --git a/src/application/views/template_start.php b/src/application/views/template_start.php new file mode 100644 index 0000000..e011f74 --- /dev/null +++ b/src/application/views/template_start.php @@ -0,0 +1,22 @@ +<!DOCTYPE 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 http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> +    <meta name="viewport" content="width=device-width,initial-scale=1"> +    <title><?= htmlentities($_title ?? "") ?></title> +    <link rel="stylesheet" href="/ui/dist/css/bootstrap.min.css"> +    <link rel="stylesheet" href="/ui/dist/css/bootstrap-theme.min.css"> +    <link rel="stylesheet" href="/ui/site.css"> +    <script src="/ui/jquery-1.12.4.min.js"></script> +    <script src="/ui/dist/js/bootstrap.min.js"></script> +    <script src="/ui/modernizr-2.6.2.min.js"></script> +    <!--[if lt IE 9]> +    <script src="/ui/html5shiv.min.js"></script> +    <script src="/ui/respond.min.js"></script> +    <![endif]--> +</head> +<body> |