-
Notifications
You must be signed in to change notification settings - Fork 8
/
default.hbs
23 lines (22 loc) · 883 Bytes
/
default.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>{{meta_title}}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="author" content="toxni">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="white">
<link rel="apple-touch-icon" href="{{asset "./favicon.ico"}}">
<link rel="stylesheet" type="text/css" href="{{asset "./css/default.css"}}">
<link rel="stylesheet" type="text/css" href="{{asset "./css/prism.css"}}">
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{{body}}}
<canvas id="cas" class="cas"></canvas>
{{ghost_foot}}
<script type="text/javascript" src="{{asset "./js/prism.js"}}"></script>
<script type="text/javascript" src="{{asset "./js/default.js"}}"></script>
</body>
</html>