-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
17 lines (16 loc) · 734 Bytes
/
404.php
File metadata and controls
17 lines (16 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php get_header(); ?>
<div class="page"
style="background-image: linear-gradient(rgba(2, 8, 21, 0.9), rgba(2, 8, 21, 0.8)), url(<?php echo esc_url(get_theme_mod('background_image_setting', get_template_directory_uri() . '/assets/img/banner1.jpg')); ?>)">
<div class="page__header">
<h1 class="page__title animate__animated animate__zoomIn">Page not found</h1>
</div>
</div>
<section class="section">
<div class="section__content">
<div>
<h3 class="fw-bold mb-4">The link you followed is broken. Page not found! <a
href="<?php echo get_site_url() ?>" class="color-gold">Go to homepage</a></h3>
</div>
</div>
</section>
<?php get_footer(); ?>