forked from codeforgso/github-workshop-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (123 loc) · 3.89 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Code For Greensboro - Git & Github 101</title>
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<nav
class="navbar is-primary"
role="navigation"
aria-label="main navigation"
>
<div class="navbar-brand">
<a class="navbar-item" href="https://bulma.io">
<img src="./logo.png" />
</a>
<a
role="button"
class="navbar-burger burger"
aria-label="menu"
aria-expanded="false"
data-target="navbarBasicExample"
>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item">
Home
</a>
<!-- <a class="navbar-item">
Documentation
</a> -->
</div>
</div>
</nav>
<section class="hero is-medium is-light">
<div class="hero-body">
<div class="container">
<div class="columns">
<div class="column is-8-desktop is-offset-2-desktop">
<h1 class="title is-2 is-spaced">Code For Greensboro</h1>
<h2 class="subtitle is-4">Git & Github 101 Workshop</h2>
<h3 class="subtitle is-4">
<!-- TODO: Delete this line and add today's date Add today's date here -->
</h2>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="columns">
<div class="column is-8-desktop is-offset-2-desktop">
<div class="content">
<h2>Welcome!</h2>
<p>
This website is a sample Github repository that contributors can
use to learn about Git and Github
</p>
<p>
Please see these projects for additonal resources:
</p>
<!-- TODO: Get these links -->
<ul>
<li>Slide show: SOME_URL</li>
<!-- TODO: change the below url to link to your project -->
<li>This project on Github: SOME_URL</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="columns">
<div class="column is-8-desktop is-offset-2-desktop">
<div class="content">
<h2>People who have completed this workshop</h2>
<p>
Please add your Github user name below with the following
template:
</p>
<pre><code>
<li>
<a href="https://github.com/YOUR_USER_NAME">
YOUR_USER_NAME
</a>
</li>
</code>
</pre>
<ul>
<li>
<a href="https://github.com/SchaeStewart">SchaeStewart</a>
</li>
<li>
<a href="https://github.com/tleisman">tleisman</a>
</li>
<!-- Add the above line below here -->
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- <footer class="footer has-text-centered">
<div class="container">
<div class="columns">
<div class="column is-8-desktop is-offset-2-desktop"></div>
</div>
</div>
</footer> -->
<script type="text/javascript" src="lib/main.js"></script>
</body>
</html>