-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
23 lines (23 loc) · 860 Bytes
/
404.php
File metadata and controls
23 lines (23 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php get_header(); ?>
<div class="site-content">
<div class="section main-content">
<div class="wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-sm-6 col-sm-offset-3">
<div class="page-content not-found">
<h1 class="page-title">Sayfa bulunamadı.</h1>
<hr>
<p class="p404">404</p>
<hr>
<p>Ulaşmak istediğiniz sayfa bulunamadı. Sayfa değiştirilmiş veya silinmiş olabilir.</p>
<p>İsterseniz <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><strong>anasayfa</strong></a>'ya dönerek siteyi dolaşmaya devam edebilirsiniz.</p>
</div>
</div>
</div>
</div>
</div>
</div><!-- main-content -->
<?php get_template_part( 'partials/section', 'cntlinks' ); ?>
</div><!-- site-content -->
<?php get_footer(); ?>