-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.13 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
<html>
<head>
<link rel="stylesheet" href="style.css"/>
<title>Beardex</title>
<meta name="viewport" content="initial-scale=1, minimum-scale=1">
</head>
<body>
<div class="header">
<h1>Beardex</h1>
<p>A collection of <a href="https://hack.gt">HackGT's</a> bears</p>
</div>
<div class="container">
<div class="col"></div>
<div class="col"></div>
<div class="col"></div>
</div>
<div class="duplicate">
</div>
<footer>
Built with 🐻 by HackGT
</footer>
<template id="bear-template">
<div class="bear">
<span>#<span class="bear-number">0</span></span>
<a class="bear-link">
<img class="bear-pic"/>
</a>
<p class="bear-description">Bear bear bear</p>
<span class="for"></span><a class="bear-event"></a><span class="by"></span><a class="bear-author"></a>
</div>
</template>
<script src="script.js"></script>
</body>
</html>