forked from tagazok/the-dotnetbot-exhibition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The .Net Bot Gallery</title>
<link href="https://fonts.googleapis.com/css2?family=Paytone+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<header>
<div class="banner flex direction-column align-items-center">
<h1 class="title">
The <span class="purple">.NET</span> Bot Exhibition
</h1>
<div class="bots-count">
<h1><span id="nb-bots" class="purple">0</span> bots</h1>
</div>
<div class="add-bot flex align-items-center">
<a class="center" href="contribute.html">Contribute to add your .NET Bot</a>
</div>
</div>
</header>
<main>
<div id="gallery" class="flex justify-content-center flex-wrap">
</div>
</main>
<footer class="center">
<p>
Built with <span class="heart">❤</span> by the <a href="https://twitter.com/olivierleplus" target="_blank">Oivier Leplus</a>
</p>
<p>Inspired by <a href="https://github.com/zenika-open-source/the-duck-gallery" target="_blank">The Duck Gallery</a></p>
</footer>
<script src="./app.js"></script>
</body>
</html>