-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path404.php
23 lines (21 loc) · 1001 Bytes
/
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
<?php get_header(); ?>
<div class="w-full">
<?php if (!is_front_page()) : ?>
<section class="px-4 md:px-6 font-roboto text-sm my-4 md:my-8">
<div class="border-t border-b border-gray-400 py-2">
<?php echo do_shortcode(' [wpseo_breadcrumb] '); ?>
</div>
</section>
<?php endif; ?>
<section class="px-4 md:px-6 pb-8">
<div class="max-w-screen-sm flex flex-col items-center justify-center mx-auto">
<h1 class="font-roboto text-2xl md:text-4xl uppercase text-center font-bold my-4 md:my-8"><?php echo __("Página não encontrada", "theme_tailwind");?></h1>
<p class="font-garamond md:text-lg mb-6 md:mb-10">
<?php echo __("Alguma coisa correu mal, ou o link estava errado ou a página foi removida.", "theme_tailwind");?>
</p>
<a class="btn btn-primary" href="/"><?php echo __("Voltar ao início", "theme_tailwind");?></a>
<p>There has been error occured!</p>
</div>
</section>
</div>
<?php get_footer(); ?>