-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlayout.html
66 lines (54 loc) · 2.57 KB
/
layout.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
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- Responsive Meta Data -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- Core Meta Data -->
<meta name="author" content="@italowaxman, @robsongajunior, @jaydson">
<meta name="description" content="A collaborative website about the latest JavaScript features and tools.">
<meta name="keywords" content="javascript, JS, ECMAScript, ES6, Harmonic, front-end">
<!-- Facebook Tags -->
<meta property="og:description" content="A collaborative website about the latest JavaScript features and tools.">
<meta property="og:image" content="http://jsrocks.org/images/thumb.png">
<meta property="og:site_name" content="JS Rocks">
<meta property="og:title" content="JS Rocks">
<meta property="og:type" content="website">
<meta property="og:url" content="http://jsrocks.org">
<!-- Twitter tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="http://jsrocks.org">
<meta name="twitter:creator" content="@es6rocks">
<meta name="twitter:title" content="JS Rocks">
<meta name="twitter:description" content="A collaborative website about the latest JavaScript features and tools.">
<meta name="twitter:image" content="http://jsrocks.org/images/thumb.png">
<!-- Humans -->
<link rel="author" href="/humans.txt" />
<!-- Favicon -->
<link rel="shortcut icon" href="http://jsrocks.org/favicon.ico">
<link rel="apple-touch-icon image_src" href="http://jsrocks.org/favicon.png">
<link rel="stylesheet" href="/css/vendor/prism.css"/>
<link rel="stylesheet" href="/css/vendor/normalize.css">
<link rel="stylesheet" href="/css/vendor/bootstrap.css">
<link rel="stylesheet" href="/css/vendor/bootstrap-theme.css">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/responsive.css">
<link rel="stylesheet" href="/css/animations.css">
<title>{% block title %}{{ config.title }} - {{ config.subtitle }}{% endblock %}</title>
</head>
<body>
<div class="wrapper">
{% include "partials/header.html" %}
<div class="content">
<div class="container">
{% block content %}
{% endblock %}
</div>
</div>
{% include "partials/footer.html" %}
</div>
{% include "partials/scripts.html" %}
</body>
</html>