-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (64 loc) · 3.14 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
<!-- ===================================================================
*
* Advent of Code
* By Joana Sesinando
*
* =================================================================== -->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8" />
<title>Advent of Code</title>
<meta name="author" content="Joana Sesinando">
<!-- Mobile & Compatibility Metas
================================================== -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Fonts
================================================== -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Chewy&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Icons
================================================== -->
<link rel="stylesheet" href="https://cdn.lineicons.com/2.0/LineIcons.css">
<!-- Styles
================================================== -->
<link href="./styles.css" rel="stylesheet">
<!-- Scripts
================================================== -->
<script src="https://unpkg.com/scrollreveal"></script>
</head>
<body class="is-boxed has-animations">
<div class="body-wrap boxed-container">
<main>
<section class="advent section text-center" id="section-advent">
<div class="container">
<div class="advent-title is-revealing">
<h1 class="section-title">Advent of Code</h2>
<p class="section-subtitle text-center">Advent of Code is an Advent calendar of small programming puzzles created by Eric Wastl.</p>
</div>
<div class="advent-years container-sm">
<div class="row is-revealing">
<a class="advent-years-item button button-primary button-shadow" href="./2021">2021</a>
<a class="advent-years-item button button-primary button-shadow" href="./2020">2020</a>
</div>
</div>
</div>
</section>
</main>
</div>
<footer class="d-flex align-items-center justify-content-center">
<span style="margin-right: 10px;">by Joana Sesinando | </span>
<a class="repository d-flex align-items-center" href="https://github.com/joanasesinando/advent-of-code" target="_blank">
<i class="lni lni-github-original"></i>See code
</a>
</footer>
<script>
// Init scroll reveal
ScrollReveal().reveal(".is-revealing");
</script>
</body>
</html>