-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster.twig
57 lines (47 loc) · 1.78 KB
/
master.twig
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
<!DOCTYPE HTML>
<!--
Ion by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html>
<head>
<title>Ion by TEMPLATED</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!--[if lte IE 8]><script src="js/html5shiv.js"></script><![endif]-->
<script>
var paths = {
theme : '{{ paths.theme }}'
};
</script>
<script src="{{ paths.theme }}js/jquery.min.js"></script>
<script src="{{ paths.theme }}js/skel.min.js"></script>
<script src="{{ paths.theme }}js/skel-layers.min.js"></script>
<script src="{{ paths.theme }}js/init.js"></script>
<noscript>
<link rel="stylesheet" href="{{ paths.theme }}css/skel.css" />
<link rel="stylesheet" href="{{ paths.theme }}css/style.css" />
<link rel="stylesheet" href="{{ paths.theme }}css/style-xlarge.css" />
</noscript>
</head>
<body id="top">
{% block header %}
<!-- Header -->
<header id="header" class="skel-layers-fixed">
<h1><a href="{{ paths.root }}">Ion</a></h1>
<nav id="nav">
<ul>
{{ menu('main', '_menu.twig') }}
</ul>
</nav>
</header>
{% endblock header %}
{% block content %}
Content goes here
{% endblock content %}
<!-- Footer -->
{% include '_footer.twig' %}
</body>
</html>