This repository was archived by the owner on Jul 7, 2020. It is now read-only.
forked from eddiesigner/liebling
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.hbs
More file actions
83 lines (71 loc) · 3.41 KB
/
Copy pathdefault.hbs
File metadata and controls
83 lines (71 loc) · 3.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="{{@site.lang}}">
<head>
{{!-- Document Settings --}}
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{{!-- Base Meta --}}
<title>{{meta_title}} - WonderProxy Blog</title>
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta class="swiftype" name="title" data-type="string" content="{{meta_title}}" />
{{#is "author"}}
{{#if author.bio}}
<meta name="description" content="{{author.bio}}" />
{{else}}
<meta name="description" content="Blog posts by {{author.name}}" />
{{/if}}
{{/is}}
{{#is "post"}}
{{#post}}
{{^if meta_description}}
<meta name="description" content="{{excerpt}}" />
{{/if}}
{{/post}}
{{/is}}
{{> swiftype }}
{{!-- Styles --}}
<link rel="stylesheet" type="text/css" href="{{asset "css/app.css"}}" media="screen" />
{{!-- This #block helper will pull data from the hero partial
to inject styles of the hero image to make it responsive --}}
{{{block "herobackground"}}}
{{!-- This tag outputs SEO meta+structured data and other important settings --}}
{{ghost_head}}
{{!-- This variable is used to make the search form work --}}
<script>
// @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat
const ghostHost = "{{@site.url}}"
// @license-end
</script>
<script type="text/javascript" src="{{asset "js/highlight.min.js"}}"></script>
<script type="text/javascript" src="{{asset "js/highlight-robot.js"}}"></script>
<script type="text/javascript">
hljs.registerLanguage('robotframework', window.hljsDefineRobot);
hljs.initHighlightingOnLoad();
</script>
</head>
<body class="{{body_class}}">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5TMCQTH"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
{{!-- All the main content gets inserted here, index.hbs, post.hbs, etc --}}
{{{body}}}
{{!-- The footer --}}
{{> footer}}
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
{{!-- Common scripts shared between pages --}}
<script crossorigin="anonymous" src="https://polyfill.io/v3/polyfill.min.js?features=IntersectionObserver%2CPromise%2CArray.prototype.includes%2CString.prototype.endsWith%2CString.prototype.startsWith%2CObject.assign%2CNodeList.prototype.forEach"></script>
<script defer src="https://unpkg.com/@tryghost/content-api@1.2.7/umd/content-api.min.js"></script>
<script defer src="{{asset "js/manifest.js"}}"></script>
<script defer src="{{asset "js/vendor.js"}}"></script>
<script defer src="{{asset "js/app.js"}}"></script>
<script defer src="{{asset "js/jquery.swiftype.search.js"}}"></script>
<script defer src="{{asset "js/jquery.swiftype.autocomplete.js"}}"></script>
<script defer src="{{asset "js/search.js"}}"></script>
{{!-- The #block helper will pull in data from the #contentFor other template files --}}
{{{block "scripts"}}}
{{!-- Ghost outputs important scripts and data with this tag --}}
{{ghost_foot}}
</body>
</html>