-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (80 loc) · 3.08 KB
/
index.html
File metadata and controls
86 lines (80 loc) · 3.08 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/style.css">
<title>Git Community - 🟠CI🟠</title>
</head>
<body>
<section id="content">
<div id="content-column">
<h1 class="primary-heading margin-yb-sm">Hackathon Github Labs</h1>
<h2 class="sub-heading">Community Collab Project with Code Institute</h2>
<p class="margin-yt-sm">
A small project to help submit your first PR,
understand and utilise git, and even
have specified tasks that emulate a
Ticket in a live environment.
</p>
</div>
<div id="content-image">
<img src="assets/images/Octocat.png" alt="Github octocat mascot">
</div>
</section>
<section id="community-section" class="margin-y-md">
<h1 class="primary-heading center-txt">Meet the Community</h1>
<!-- Container to hold participant cards from JSON file -->
<div id="community"></div>
</section>
<footer>
<div id="repo-go">
<p>
Want to contribute to this project?
</p>
<p>
Learn to submit your first PR?
</p>
<a href="https://github.com/auxfuse/hackathon-git-labs/blob/main/README.md">Go! Get started 🙌</a>
</div>
<div id="additional-info">
<p>Meet the team:</p>
<ul id="team-list">
<li>
<a href="https://github.com/auxfuse" target="_blank" rel="noopener noreferrer">
Anthony - Owner/Developer
</a>
</li>
<li>
<a href="https://github.com/NaoiseGaffney" target="_blank" rel="noopener noreferrer">
Gaff - Maintainer/Developer
</a>
</li>
<li>
<a href="https://github.com/AideenM12" target="_blank" rel="noopener noreferrer">
Aideen - Maintainer/Developer
</a>
</li>
<li>
<a href="https://github.com/Gwen-Bradbury" target="_blank" rel="noopener noreferrer">
Gwen - Maintainer/Developer
</a>
</li>
<li>
<a href="https://github.com/andrewdempsey2018" target="_blank" rel="noopener noreferrer">
Andrew - Maintainer/Developer
</a>
</li>
<li>
<a href="https://github.com/alissatroiano" target="_blank" rel="noopener noreferrer">
Alissa - Maintainer/Developer
</a>
</li>
</ul>
</div>
</footer>
<!-- Custom JS Files -->
<script src="assets/js/main.js" defer></script>
</body>
</html>