-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.php
More file actions
37 lines (32 loc) · 821 Bytes
/
404.php
File metadata and controls
37 lines (32 loc) · 821 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
31
32
33
34
35
36
37
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package ai4europe
*/
get_header();
?>
<section class="section-error section-error--white">
<div class="container">
<div class="row">
<div class="col-12 offset-lg-2 col-lg-8">
<div class="section-error-div1">
<div class="section-error-div">
<p><?php echo get_field('title_404', 'option'); ?></p>
<h3>404</h3>
<a href="<?php echo get_field('button_url_404', 'option'); ?>" class="btn-type">
<svg class="btn-type-background">
<use xlink:href="#btn-line"></use>
</svg>
<?php echo get_field('button_name_404', 'option'); ?>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<?php
get_footer();