-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
51 lines (46 loc) · 1.84 KB
/
about.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
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>CoREcast</title>
<meta name="description" content="">
<meta name=viewport content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="semantic/dist/semantic.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div id="navigation" class="ui large menu">
<a class="header item" href="/~corecast">CoREcast</a>
<div class="right menu">
<a class="item" href="episodes.html">Episodes</a>
<a class="active item" href="about.html">About</a>
</div>
</div>
<div class="ui container">
<h1 id="episodeHeader" class="ui center aligned icon header">
<i class="massive blue users icon"></i>
About the CoREcast-cast
</h1>
<h2 class="ui header">
<div class="content">
Who We Are
</div>
</h2>
<div id="aboutText" class="ui segment">
<h3>CoRE (core) · cast <i>noun</i>: </h3>
<p>
<i>a pair of students talking about stuff. Plus some special guests from the floor.</i>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="semantic/dist/semantic.min.js"></script>
<script>
$('.special.cards .image').dimmer({
on: 'hover'
});
</script>
</body>
</html>