-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.html
64 lines (50 loc) · 2.82 KB
/
base.html
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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
{# Grab the title and description from the CMS general settings. #}
{% set site_title = getSetting('siteName')%}
{% set site_description = getSetting('siteDescription')%}
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>{% block title %}{{ site_title|default('Webhook site') }}{% endblock %}</title>
<meta name="description" content="{% block description %}{{ site_description|default('Built with Webhook.') }}{% endblock %}">
<meta name="viewport" content="width=device-width">
<link rel="shortcut icon" href="/static/images/favicon.ico">
<link rel="apple-touch-icon icon-precomposed" href="/static/images/apple-touch-icon.png"/>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.0/normalize.min.css">
<!-- build:css /static/css/minified.css -->
<link rel="stylesheet" href="/static/css/app.css"/>
<link rel="stylesheet" href="/static/css/wysiwyg_figures.css"/>
<!-- endbuild -->
<script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.7.1/modernizr.min.js"></script>
{% block head_extra %}{% endblock %}
</head>
<body>
{% block body %}
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
{% include "templates/partials/header.html" %}
{% block content %}{% endblock %}
{% include "templates/partials/footer.html" %}
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.imagesloaded/3.0.4/jquery.imagesloaded.min.js"></script>
<!-- build:js /static/javascript/app.min.js -->
<script src="/static/javascript/webhook-js/webhook-affix.js"></script>
<script src="/static/javascript/fluidbox/jquery.fluidbox.js"></script>
<script src="/static/javascript/app.js"></script>
<!-- endbuild -->
{% block scripts_extra %}{% endblock %}
{# Google Analytics code. Feel free to remove. #}
<script>
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src='//www.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
{% endblock %}
</body>
</html>