forked from thedevslot/WhatATheme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
30 lines (27 loc) · 953 Bytes
/
Copy path404.html
File metadata and controls
30 lines (27 loc) · 953 Bytes
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
---
layout: compress
---
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
<section class="hero is-fullheight has-text-centered has-background-black-ter">
<div class="hero-body">
<div class="container">
<h1 class="title is-1 is-uppercase has-text-weight-bold has-text-white">
{{page.title}}
</h1>
<h3 class="is-uppercase has-text-weight-medium is-marginless has-text-grey-light">
{{content}}
</h3>
<hr>
<div class="columns is-marginless is-inline-flex-desktop">
<a href="{{site.url}}{{site.baseurl}}/"
class="button is-white column is-rounded is-outlined is-uppercase has-text-weight-normal">Home</a>
</a>
</div>
</div>
</div>
</section>
</body>
</html>