-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmain.html
More file actions
28 lines (28 loc) · 1.02 KB
/
main.html
File metadata and controls
28 lines (28 loc) · 1.02 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
{% if page.serie %}
<title>{{ page.serie}} - {{ page.title }} - CODEHERO</title>
{% else %}
<title>{{ page.title }} - CODEHERO</title>
{% endif %}
<meta name="viewport" content="width=device-width">
{% if page.description %}
<meta name="description" content="{{ page.description }}">
{% endif %}
<link href="http://fonts.googleapis.com/css?family=Lato:400,700,300" rel="stylesheet" type="text/css">
{% stylesheet styles %}
</head>
<body>
{{ content }}
<a href="#" class="scrollTo-top">
<i class="fa fa-angle-double-up"></i>
</a>
<div id="fb-root"></div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="{{ "jquery-2.0.3.min.js" | asset_path }}"><\/script>')</script>
{% javascript app %}
</body>
</html>