forked from UKRSE/UKRSE.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.html
32 lines (30 loc) · 862 Bytes
/
default.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
<!DOCTYPE html>
<html>
<head>
<!--[if lt IE 9]>
<script src="html5shiv.js"></script>
<![endif]-->
<title>{{page.title}}</title>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen" />
</head>
<body>
{% include topbar.html %}
<div id="main">
<div id="title"><h1>{{page.title}}</h1></div>
<div id="content">
{% assign columns = content | split: 'COLUMN_SEPARATOR' %}
<div id="content_left">
{{columns[0]}}
</div>
<div id="content_right">
{{columns[1]}}
</div>
</div>
</div>
{% include footer.html %}
{% include analytics.html %}
</body>
</html>