-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
36 lines (31 loc) · 1.49 KB
/
404.php
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
<?php get_header(); ?>
<main class="dark-theme">
<section class="generic-hero not-found">
<div class="generic-hero-back">
<p class="not-fa">404</p>
</div>
<div class="area flex align-center">
<div class="resp-logo">
<img src="<?php echo get_template_directory_uri(); ?>/img/logos/logo-white.svg" />
</div>
<div class="col-9">
<div class="sub-section flex align-center">
<div class="icon small">
<img src="<?php echo get_template_directory_uri(); ?>/img/icons/broken-chain.svg"
loading="lazy" />
</div>
<p class="subtitle">Lost in the Blockchain Wilderness?</p>
</div>
<h1 class="title-big">You’ve Entered <br />Uncharted Territory…</h1>
<p class="text-20">Welcome, fellow explorer! It seems you’ve ventured into uncharted
blockchain territory. While we appreciate your adventurous spirit, it appears we couldn’t find
the page you were looking for. Don’t worry; we’ll help you find your way back to the community
hive.</p>
<div class="buttons gap-20 flex">
<a href="<?php echo home_url(); ?>" class="button secondary">BACK TO HOMEPAGE</a>
</div>
</div>
</div>
</section>
</main>
<?php get_footer(); ?>