-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathdefault.hbs
52 lines (39 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0">
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="{{asset "css/font-awesome.min.css"}}">
<link rel="stylesheet" href="{{asset "css/screen.css"}}">
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{{body}}}
<footer class="blog-footer">
<div class="inner">
<p>Publicado con <a href="http://ghost.org">Ghost.</a></p>
</div>
</footer>
{{ghost_foot}}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js"></script>
<script>
//Menu Toggle
$("#icon").click(function() {
$(this).toggleClass("active");
$("#menu").fadeToggle();
});
//Code Highlighter
$(document).ready(function() {
$('pre code').each(function(i, block) {
hljs.highlightBlock(block);
});
});
//Google Analytics
</script>
</body>
</html>