Ghost_Ruby_Theme/default.hbs

40 lines
997 B
Handlebars
Raw Normal View History

2019-04-29 19:46:11 +03:00
<!DOCTYPE html>
2021-03-09 07:39:53 +02:00
<html lang="{{@site.locale}}">
2020-09-24 05:25:42 +03:00
2019-04-29 19:46:11 +03:00
<head>
2020-09-24 05:25:42 +03:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{meta_title}}</title>
<link rel="stylesheet" href="{{asset "built/screen.css"}}">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i%7CDosis:600,700&amp;subset=latin-ext">
2019-04-29 19:46:11 +03:00
2020-09-24 05:25:42 +03:00
{{ghost_head}}
2019-04-29 19:46:11 +03:00
</head>
2020-09-24 05:25:42 +03:00
2019-05-04 08:01:50 +03:00
<body class="{{body_class}}{{{block "body_class"}}}">
2020-09-24 05:25:42 +03:00
<div class="site">
{{> header}}
<div class="site-content">
{{{body}}}
</div>
{{> footer}}
2019-04-29 19:46:11 +03:00
</div>
2020-09-24 05:25:42 +03:00
{{> off-canvas}}
{{> pswp}}
2019-05-05 08:11:46 +03:00
2020-09-24 05:25:42 +03:00
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous">
</script>
<script src="{{asset "built/main.min.js"}}"></script>
2019-04-29 19:46:11 +03:00
2020-09-24 05:25:42 +03:00
{{> facebook}}
2019-05-01 11:20:04 +03:00
2020-09-24 05:25:42 +03:00
{{{block "scripts"}}}
2019-04-29 19:46:11 +03:00
2020-09-24 05:25:42 +03:00
{{ghost_foot}}
2019-04-29 19:46:11 +03:00
</body>
2020-09-24 05:25:42 +03:00
2019-04-29 19:46:11 +03:00
</html>