This repository was archived by the owner on Jan 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path404.php
More file actions
34 lines (33 loc) · 1.31 KB
/
Copy path404.php
File metadata and controls
34 lines (33 loc) · 1.31 KB
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
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<section class="section-hero section-shaped my-0" >
<div class="shape shape-style-1 shape-background">
<span class="span-150"></span>
<span class="span-50"></span>
<span class="span-50"></span>
<span class="span-75"></span>
<span class="span-100"></span>
<span class="span-75"></span>
<span class="span-50"></span>
<span class="span-100"></span>
<span class="span-50"></span>
<span class="span-100"></span>
</div>
<div class="container shape-container d-flex align-items-center" >
<div class="col px-0">
<div class="row justify-content-center align-items-center">
<div class="col-lg-7 text-center pt-lg">
<h1 class="display-1 text-white shake-slow shake-constant" style="font-size:12rem;">404</h1>
<p class="lead text-white mt-4 mb-5">Not Found!</p>
<div class="btn-wrapper">
</div>
</div>
</div>
<div class="row align-items-center justify-content-around stars-and-coded">
<div class="col-sm-4"></div>
<div class="col-sm-4 mt-4 mt-sm-0 text-right"></div>
</div>
</div>
</div>
</section>
<?php $this->need('footer.php'); ?>