diff options
author | Jonas Kohl | 2024-09-06 14:38:26 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-09-06 14:38:26 +0200 |
commit | 0540e04c77864186ce48193456634b897a11f5aa (patch) | |
tree | 92607cc903a9b0dc482ca14f3d33ab9c3707d78c /includes/mobile/template_head_start.php | |
parent | 2d8a37e7ac46aa100f2e460b024d21bae2883f5b (diff) |
Add mobile version
Diffstat (limited to 'includes/mobile/template_head_start.php')
-rw-r--r-- | includes/mobile/template_head_start.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/includes/mobile/template_head_start.php b/includes/mobile/template_head_start.php new file mode 100644 index 0000000..21c44f6 --- /dev/null +++ b/includes/mobile/template_head_start.php @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width"> + <title><?= htmlentities($PAGE_TITLE ?? "") ?> - Mystic House Fansite</title> + <link rel="stylesheet" href="/mobile/dist/css/bootstrap.min.css"> + <link rel="stylesheet" href="/mobile/site.css"> + <script src="/mobile/jquery-1.12.4.min.js"></script> + <script src="/mobile/dist/js/bootstrap.min.js"></script> |