-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathbase.html
More file actions
47 lines (47 loc) · 2.13 KB
/
base.html
File metadata and controls
47 lines (47 loc) · 2.13 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
{% include 'includes/meta-header.html' %}
{% block css %}
<link rel="stylesheet" type="text/css" href="{{ '/static/css/bootstrap.css'|url }}">
<link rel="stylesheet" type="text/css" href="{{ '/static/fonts/font-awesome/css/font-awesome.css'|url }}">
<link rel="stylesheet" type="text/css" href="{{ '/static/css/style.css'|url }}">
{% endblock %}
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,900,300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,800,600,300' rel='stylesheet' type='text/css'>
<script src="{{ '/static/js/modernizr.custom.js'|url }}"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body {% if this.bodyclass %}class="{{ this.bodyclass }}"{% endif %}>
<div id="pyrj-doc" class="{% block page_class %}{% endblock %}">
{% include 'includes/bootstrap/navigation-bar.html' %}
{% block page_header %}{% endblock %}
{% block content %}{% endblock %}
{% include 'includes/bootstrap/footer.html' %}
</div>
{% block js %}
<!-- GOOGLE ANALYTICS -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-33656081-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- /GOOGLE ANALYTICS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="{{ '/static/js/bootstrap.min.js'|url }}"></script>
<script src="{{ '/static/js/global.js'|url }}"></script>
{% endblock %}
{% block js_bottom %}
{% endblock %}
</body>
</html>