-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.hbs
86 lines (60 loc) · 3.05 KB
/
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
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
84
85
86
<!DOCTYPE html>
<html>
<head>
{{!-- Title --}}
<title>{{meta_title}}</title>
{{!-- Styles --}}
<link rel='stylesheet' type='text/css' href='{{asset "css/styles.css"}}' />
<link href='https://fonts.googleapis.com/css?family=Titillium+Web:700|Lato:400,300,700' rel='stylesheet' type='text/css'>
{{!-- Document Settings --}}
<meta charset='utf-8' />
<meta http-equiv='X-UA-Compatible' content='IE=edge' />
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<meta name='HandheldFriendly' content='True' />
<meta name='description' content='Apasionados por el código - HTML5, CSS3, Javascript, React.js, Go, RethinkDB, Linux, Rust' />
{{!-- Brand icon --}}
<link rel='shortcut icon' href='{{asset "favicon.ico"}}'>
<link rel="apple-touch-icon" sizes="180x180" href='{{asset "./images/favicons/apple-touch-icon.png"}}'>
<link rel="icon" type="image/png" href='{{asset "./images/favicons/favicon-32x32.png"}}'sizes="32x32">
<link rel="icon" type="image/png" href='{{asset "./images/favicons/favicon-16x16.png"}}' sizes="16x16">
<link rel="manifest" href='{{asset "./images/favicons/manifest.json"}}'>
<link rel="mask-icon" href='{{asset "./images/favicons/safari-pinned-tab.svg"}}' color="#4283C3">
<meta name="apple-mobile-web-app-title" content="Cristal Code">
<meta name="application-name" content="Cristal Code">
<meta name="theme-color" content="#ffffff">
<meta name="google-site-verification" content="qoujvmxK6-oJBS-0jME7Vm1ah2PumOVQOYlZC9g8MjM" />
{{!-- Ghost outputs important style and meta data with this tag --}}
{{ghost_head}}
</head>
<body class='{{body_class}} nav-closed'>
<div class='site-wrapper'>
{{!-- Header template --}}
{{> 'header'}}
{{!-- All the main content gets inserted here, index.hbs, post.hbs, etc --}}
{{{body}}}
{{!-- Navigation-mobile template --}}
{{> 'navigation-mobile'}}
{{!-- Arrow-down (icon) --}}
<a href='#header' class='arrow-up icon-arrow-up'></a>
{{!-- Footer template --}}
{{> 'footer'}}
</div>
{{!-- Google analytics --}}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-78964356-1', 'auto');
ga('send', 'pageview');
</script>
{{!-- Jquery --}}
<script src='https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js'></script>
{{!-- Script (alepht) --}}
<script type='application/javascript' src='{{asset "js/index.js"}}'></script>
{{!-- Addthis --}}
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-586befeb72a94f90"></script>
{{!-- Ghost outputs important scripts and data with this tag --}}
{{ghost_foot}}
</body>
</html>