-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
54 lines (48 loc) · 1.77 KB
/
404.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
---
---
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<section class="hero is-fullheight">
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="site-title title">Page Not Found</h1>
<div class="is-divider" style="margin-top: 0.5rem; margin-bottom: 0.5rem;"></div>
<nav class="navbar" role="navigation">
<div class="navbar-brand">
<a class="navbar-item" href="/">
<i style="font-family: 'Cormorant Garamond, sans-serif;"> Maybe try the these links?</i>
</a>
<div class="navbar-burger" data-target="navbar-main"
onclick="document.querySelector('.navbar-menu').classList.toggle('is-active');">
<span></span>
<span></span>
<span></span>
</div>
</div>
<div class="navbar-menu" id="navbar-main">
<div class="navbar-end">
<!-- navbar items -->
<a href="/" class="navbar-item">Home</a>
{% for item in site.data.settings.menu %}
<a href="/{{ item.file }}" class="navbar-item">{{ item.name }}</a>
{% endfor %}
<div class="navbar-item">
{% for item in site.data.settings.social %}
<a href="{{ item.link }}" class="button is-white">
<i class="{{ item.icon }} fa-w-14 fa-lg" aria-hidden="true"></i>
</a>
{% endfor %}
</div>
</div>
</div>
</nav>
</div>
</div>
<div class="hero-foot">
{% include footer.html %}
</div>
</section>
</body>
</html>