-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (129 loc) · 5.57 KB
/
index.html
File metadata and controls
143 lines (129 loc) · 5.57 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
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
<!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 Collaboration Project</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="footer-info">
<p>Meet the AWESOME team 🤜</p>
<a class="participant-link" href="https://github.com/auxfuse" target="_blank" rel="noopener noreferrer"
data-content="Anthony" data-field="link">
Anthony
</a>
<a class="participant-link" href="https://github.com/andrewdempsey2018" target="_blank"
rel="noopener noreferrer" data-content="Andrew" data-field="link">
Andrew
</a>
<a class="participant-link" href="https://github.com/aramantos" target="_blank"
rel="noopener noreferrer" data-content="John" data-field="link">
John
</a>
<p>More info 🛈</p>
<a class="participant-link" href="/privacy.html" data-content="Privacy" data-field="link">
Privacy
</a>
<a class="participant-link" href="/accessibility.html" data-content="Accessibility" data-field="link">
Accessibility
</a>
<a class="participant-link" href="/contact.html" data-content="Contact" data-field="link">
Contact
</a>
</div>
</footer>
</body>
</html>