mirror of
https://github.com/Damillora/Yuika
synced 2024-11-04 18:17:31 +00:00
38 lines
1.3 KiB
Handlebars
38 lines
1.3 KiB
Handlebars
<!DOCTYPE html>
|
|
<html lang="{{@site.lang}}">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<title>{{meta_title}}</title>
|
|
<meta name="HandheldFriendly" content="True" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin />
|
|
|
|
<link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Exo+2:300,400,500&display=swap" />
|
|
<link rel="preload" as="style" href="{{asset "built/styles.css"}}" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Exo+2:300,400,500&display=swap" />
|
|
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
|
|
<link rel="stylesheet" type="text/css" href="{{asset "built/styles.css"}}" />
|
|
|
|
{{ghost_head}}
|
|
</head>
|
|
<body class="{{body_class}}">
|
|
{{> "site-header"}}
|
|
<div>
|
|
{{{body}}}
|
|
</div>
|
|
<script
|
|
src="https://code.jquery.com/jquery-3.4.1.min.js"
|
|
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
|
|
crossorigin="anonymous">
|
|
</script>
|
|
<script src="{{asset "built/yuika.js"}}"></script>
|
|
{{{block "scripts"}}}
|
|
|
|
{{ghost_foot}}
|
|
</body>
|
|
</html>
|