-
Notifications
You must be signed in to change notification settings - Fork 1
/
master.twig
53 lines (46 loc) · 1.84 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
<!DOCTYPE html>
<!--
Interphase by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Interphase 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="{{ paths.theme }}css/ie/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>
<!--[if lte IE 8]><link rel="stylesheet" href="{{ paths.theme }}css/ie/v8.css" /><![endif]-->
</head>
<body class="{% block bodyClass %}{% endblock %}">
<!-- Header -->
<header id="header">
<h1><a href="{{ paths.root }}">Interphase</a></h1>
<nav id="nav">
<ul>
{{ menu('main', '_menu.twig') }}
</ul>
</nav>
</header>
{% block content %}
Content goes here
{% endblock content %}
{% include '_footer.twig' %}
</body>
</html>