forked from auxfuse/hackathon-git-labs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
160 lines (146 loc) · 6.09 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
153
154
155
156
157
158
159
160
<!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">
<!-- Custom JS Files -->
<script src="assets/js/main.js" type="module"></script>
<!-- Custom Elements -->
<link rel="stylesheet" href="assets/js/components/slideshow/slideshow.css">
<script src="assets/js/components/slideshow/slideshow.js" type="module"></script>
<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.
<br>
Help us by sharing the project to 👉
<a href="https://ctt.ac/qZN6i" target="_blank" rel="noopener noreferrer" class="twitter-link">Twitter!</a>
</p>
</div>
<div id="content-image">
<img src="assets/images/octocat.png" alt="Github octocat mascot">
</div>
</section>
<section id="showcases-section" class="margin-y-md">
<h1 class="primary-heading center-txt">Showcases</h1>
<div id="showcases">
<div id="showcases-slide-title"></div>
<!-- Custom slideshow element -->
<slide-show
id="showcases-slideshow"
timeout="15"
animation="scroll"
slide="0">
</slide-show>
<!-- Slideshow slide template -->
<template class="item-template">
<div class="slideshow-slide">
<iframe src="" tabindex = "-1" frameborder="0" loading="lazy"
class="slideshow-contents" data-field="preview"></iframe>
<a class="slideshow-link" href="" data-field="link">
<div class="slide-title">
<h2 class="card-title">
<span data-field="random_emoji"></span>
<span data-field="name">_</span>
</h2>
</div>
<span class="slideshow-link-text">View Work ➡</span>
</a>
</div>
</template>
</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>
<!-- Community card template -->
<template class="item-template">
<div class="card">
<h2 class="card-title">
<span data-field="random_emoji"></span>
<span data-field="name">_</span>
</h2>
<h3 class="card-sub margin-yt-sm">
📅 Started: <span data-field="course_start"></span>
</h3>
<h3 class="card-sub margin-yb-sm custom-underline">
🎓 Stage: <span data-field="course_stage"></span>
</h3>
<h3 class="card-detail">
Loves: <span data-field="favorite_language"></span> 😍
</h3>
<h3 class="card-detail custom-underline">
Learning: <span data-field="currently_learning"></span> 📚
</h3>
<a class="participant-link" href="" data-content="View Work ➡" data-field="link">
View Work ➡
</a>
</div>
</template>
<ul id="pagination"></ul>
</section>
<footer id="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">Start here 🙌</a>
</div>
<div id="additional-info">
<h3>Meet the team:</h3>
<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>
<li>
<a href="https://github.com/aramantos" target="_blank" rel="noopener noreferrer">
John - Maintainer/Developer
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>