-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
93 lines (79 loc) · 2.87 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>codebar Git workshop</title>
<meta name="author" content="codebar">
<meta name="description" content="codebar Git workshop">
<meta name="keywords" content="git codebar workshop version control">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css" type="text/css">
<link rel="stylesheet" href="css/layout.css" type="text/css">
<link rel="stylesheet" href="css/styles.css" type="text/css">
</head>
<body>
<header>
<a href="https://codebar.io/" target="_blank">
<img src="images/git-logo.svg" alt="codebar brighton git logo" class="logo">
</a>
<nav id="nav">
<ul>
<li><a href="index.html">Schedule</a></li>
<li><a href="setup.html">Set Up</a></li>
<li><a href="groups.html">The Groups</a></li>
<li><a href="http://gitforthe.win/commands" target="_blank">Commands</a></li>
</ul>
</nav>
</header>
<div class="main">
<section>
<h1>Hello! Welcome to our Git workshop</h1>
<h2>We hope you're excited to learn all about version control!</h2>
</section>
<section>
<h3>Schedule</h3>
<div class="schedule">
<h4 class="time">9:00</h4>
<h4 class="time">10:00</h4>
<h4 class="time">11:00</h4>
<h4 class="time">12:00</h4>
<h4 class="time">13:00</h4>
<h4 class="time">14:00</h4>
<h4 class="time">15:00</h4>
<h4 class="time">16:00</h4>
<h4 class="time">17:00</h4>
<div class="session coffee">
<p>Registration & coffee</p>
</div>
<div class="session morning">
<p>Morning workshop</p>
</div>
<div class="session lunch">
<p>Lunchtime!</p>
</div>
<div class="session afternoon">
<p>Afternoon workshop</p>
</div>
<div class="session drinks">
<p>Post-event drinks</p>
</div>
</div>
</section>
</div>
<footer>
<div class="footer-logo">
<p>Sponsored by</p>
<a href="https://ocasta.com/" target="_blank">
<img src="/images/ocasta-logo.svg" alt="" class="logo">
</a>
</div>
<h1>&</h1>
<div class="footer-logo">
<p>Hosted by</p>
<a href="https://www.theskiff.org/" target="_blank">
<img src="/images/theskiff-logo.png" alt="" class="logo">
</a>
</div>
</footer>
<script src="js/nav.js"></script>
</body>
</html>