-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.html
60 lines (56 loc) · 2.09 KB
/
project.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>uOttawa iGEM</title>
<link rel="stylesheet" href="css/uo2014.css" />
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="./uo2014-konami.js"></script>
<script>
// Konami code
// ===========
var konami = new Konami(function() {
$("img:not(.no-k)").attr("src", "r/uo2014-shihab.jpg");
});
// Tabs
// ====
$("a.tab").click(function(e) {
e.preventDefault();
var target = $(this);
$("div.tab").hide();
$(".tab-" + this.attr("href")).show();
});
</script>
</head>
<body>
<header class="ig-main-header gplay">
<div class="row">
<a href="index.html" class="title"><span class="igem">iGEM</span>uOttawa</a>
<nav>
<a class="current" href="project.html">project</a>
<a href="drylab.html">dry lab</a>
<a href="policy.html">policy</a>
<a href="team.html">team</a>
</nav>
<img src="r/uo2014-igemlogo.png" alt="" class="igem-logo no-k">
</div>
</header>
<div class="row">
<div class="sidebar">
<h1>Project</h1>
<a href="#foo">Sub-page 1</a>
<a href="#foo">Sub-page 2</a>
<a href="#foo">Sub-page 3</a>
<a href="#foo">Sub-page 4</a>
<p class="sidebar-description">
A short description of the current page;
</p>
</div>
<div class="content">
<h1>Some wet lab jazz</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Modi quaerat culpa voluptatibus distinctio quos molestias, minima omnis harum cum ipsum molestiae asperiores, esse quis, doloribus repellat at voluptates! Nisi, esse.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Consectetur cum rerum qui sequi dolore ea possimus, vel iste cumque ab praesentium ad accusantium iure fugiat ipsa libero amet cupiditate ipsam!</p>
</div>
</div>
</body>
</html>