-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
27 lines (23 loc) · 770 Bytes
/
Copy path404.php
File metadata and controls
27 lines (23 loc) · 770 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
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package elektroserwis-wp-theme
*/
get_header(); ?>
<main id="main" class="page-404 pt-5" role="main" style="background: #131313;">
<div class="container py-5">
<p class="mb-3 text-center chakra-petch-font fw-bold text-orange" style="font-size: 120px;letter-spacing: 5px;">
404
</p>
<div class="row justify-content-center">
<div class="col-8 col-lg-5 text-center">
<img src="/wp-content/uploads/2024/10/serwis.png" alt="Nie ma takiej strony" class="img-fluid mb-4 mb-lg-5">
</div>
</div>
</div>
</main><!-- #main -->
<?php
get_footer();