-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
152 lines (149 loc) · 4.93 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!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="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 GitHub repository that contributors can
use to learn about Git and GitHub
</p>
<p>
Please see these projects for additonal resources:
</p>
<ul>
<li><a href="https://github.com/SchaeStewart/github-workshop">Slide show</li></a>
<!-- TODO: Replace "CodeForGSO" with your github username -->
<li><a href="https://github.com/CodeForGSO/github-workshop-site">This project on GitHub</a></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>TODO:</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>
</div>
</div>
</div>
<div class="columns">
<div class="column is-8-desktop is-offset-2-desktop">
<div class="content">
<h2>People who have completed this workshop</h2>
<ul>
<li>
<a href="https://github.com/SchaeStewart">SchaeStewart</a>
</li>
<li>
<a href="https://github.com/Colin94L">Colin94L</a>
</li>
<li>
<a href="https://github.com/tleisman">tleisman</a>
</li>
<li>
<a href="https://github.com/JenniferPettie">JenniferPettie</a>
</li>
<li>
<a href="https://github.com/AnnaLuisaD">AnnaLuisaD</a>
</li>
<li>
<a href="https://github.com/SabineEmden">SabineEmden</a>
</li>
<li>
<a href="https://github.com/jjmonterey">jjmonterey</a>
</li>
<li>
<a href="https://github.com/remrobem">remrobem</a>
</li>
<li>
<a href="https://github.com/larfcodes">larfcodes</a>
</li>
<li>
<a href="https://github.com/Laura-HB">Laura-HB</a>
</li>
<li>
<a href="https://github.com/stef00n">stef00n</a>
</li>
<li>
<a href="https://github.com/katilyn-wiggins">katilyn-wiggins</a>
</li>
<li>
<a href="https://github.com/tcaddy">tcaddy</a>
</li>
</ul>
<!-- TODO: Add your username above this line -->
</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">
Made by <a href="https://github.com/CodeForGSO">Code For Greensboro</a>
</div>
</div>
</div>
</footer>
<script type="text/javascript" src="lib/main.js"></script>
</body>
</html>