-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (42 loc) · 1.82 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<script src="jquery.js"></script>
<script>
$(function() {
$("#includedContent").load("header.html");
});
</script>
<!--#include virtual="includeMe.html" -->
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div id="includedContent"></div>
<div id="background"></div>
<div class="mainContent">
<div class="banner"><p>This will be used to post news or updates, also possibly serve as a link to the live contests. Will usually be hidden.</p></div>
<div class="content">
<div class="column">
<a href="index.html" class="contentHeader" id="contestLink">Blog Entries</a>
<div class="contentBody">
<h3><a class="links" href="news.html">Depth First Searches</a></h3>
<p>This is the first few starting sentences in the DFS blog entry and also a link that will take you to the blog page and is also a run on sentence...</p>
<h3><a class="links" href="blog/bfs.html">Breadth First Searches</a></h3>
<p>This is the first few starting sentences in the BFS blog entry
and also a link that will take you to the blog page and is also a
run on sentence... NATHAN WAS HERE</p>
</div>
</div>
<div class="column">
<a href="news.html" class="contentHeader">Latest News</a>
<div class="contentBody">
<h3><a class="links" href="news.html">CCPC 2014</a></h3>
<p>Stuff and things happened here and some students won money. Link to the news page with that has a write up on the contest..</p>
<h3><a class="links" href="http://psc.cpsc.ucalgary.ca/ccpc/2013/">ACPC 2013</a></h3>
<p>Stuff and things happened here and some students won money. Link to the news page with that has a write up on the contest..</p>
</div>
</div>
</div>
</div>
</body>
</html>