forked from UKRSE/UKRSE.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.html
37 lines (35 loc) · 1.22 KB
/
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
33
34
35
36
37
<html>
<head>
<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>
<div id="header">
<div id="tagline"><a href="index.html">The UK Community of Research Software Engineers</a></div>
<ul>
<li><a href="who.html">About</a></li>
<li><a href="why.html">Why?</a></li>
<li><a href="help.html">Help Out</a></li>
<li><a href="objectives.html">Objectives</a></li>
<li><a href="supporters.html">Supporters</a></li>
<li><a href="join.html">Join Us!</a></li>
</ul>
</div>
<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>
<div id="footer">Academia must adapt to the fundamental role that software plays in today's research.</div>
</body>
</html>