forked from Code52/code52.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplash.html
More file actions
56 lines (49 loc) · 2.24 KB
/
splash.html
File metadata and controls
56 lines (49 loc) · 2.24 KB
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
<!DOCTYPE html>
<html>
<head>
<meta content="en-au" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>{% if page.title != "code52" %}{{ page.title }} - code52{% else %}{{ page.title }}{% endif %}</title>
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="Blog Feed" />
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Blog Feed" />
<link href="/projectsrss.xml" type="application/rss+xml" rel="alternate" title="Projects Feed" />
<link href="/projectsatom.xml" type="application/atom+xml" rel="alternate" title="Projects Feed" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.1.min.js"></script>
<script type="text/javascript" src="/js/jquery.metro.js"></script>
<link rel="shortcut icon" href="/img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="/css/landing.css" />
</head>
<body>
<div id="container">
<h1 style="display:inline;"><a href="/" id="home" title="home" alt="home">code52</a></h1>
<h2 style="display:inline;">a new coding project every week</h2>
<div class="metro-pivot">
{% include latest_project.html %}
{% include goals.html %}
{% include get_involved.html %}
{% include past.html %}
{% include links.html %}
</div>
</div>
{% include footer.html %}
<script>
var defaults = {
animationDuration: 500,
headerOpacity: 0.25,
fixedHeaders: false,
headerSelector: function (item) { return item.children("h3").first(); },
itemSelector: function (item) { return item.children(".pivot-item"); },
headerItemTemplate: function () { return $("<span class='header' />"); },
pivotItemTemplate: function () { return $("<div class='pivotItem' />"); },
itemsTemplate: function () { return $("<div class='items' />"); },
headersTemplate: function () { return $("<div class='headers' />"); },
controlInitialized: undefined,
selectedItemChanged: undefined
};
$(function () {
$("div.metro-pivot").metroPivot(defaults);
});
</script>
</body>
</html>