Yuika/default.hbs

39 lines
1.4 KiB
Handlebars
Raw Normal View History

2019-11-08 20:59:26 +00:00
<!DOCTYPE html>
<html lang="{{@site.lang}}">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>{{meta_title}}</title>
2019-11-08 22:04:36 +00:00
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2019-11-08 20:59:26 +00:00
2020-10-31 18:38:51 +00:00
<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" />
2021-04-20 05:01:23 +00:00
<link rel="preload" as="style" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
2020-10-31 18:38:51 +00:00
<link rel="preload" as="style" href="{{asset "built/styles.css"}}" />
2019-11-08 20:59:26 +00:00
2020-10-31 18:38:51 +00:00
<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"}}" />
2019-11-08 20:59:26 +00:00
{{ghost_head}}
</head>
<body class="{{body_class}}">
2020-11-11 04:54:56 +00:00
{{> "site-header"}}
2021-04-14 08:24:27 +00:00
<div>
2019-11-09 21:10:51 +00:00
{{{body}}}
</div>
2019-11-08 20:59:26 +00:00
<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>