-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
31 lines (29 loc) · 1.05 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
<?php
/*
**********************************************************************
* -------------------------------------------------------------------
* Project Name : AbdalNewsTheme
* File Name : 404.php
* Author : Ebrahim Shafiei (EbraSha)
* Email : Prof.Shafiei@Gmail.com
* Created On : 2024-08-03 5:23 PM
* Description : [A brief description of what this file does]
* -------------------------------------------------------------------
*
* "Coding is an engaging and beloved hobby for me. I passionately and insatiably pursue knowledge in cybersecurity and programming."
* – Ebrahim Shafiei
*
**********************************************************************
*/
?>
<?php get_header(); ?>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1>404</h1>
<p>Sorry, the page you are looking for could not be found.</p>
<a class="btn btn-primary" href="<?php echo home_url(); ?>">Go to Homepage</a>
</div>
</div>
</div>
<?php get_footer(); ?>