Initial 404, single and loop
This commit is contained in:
parent
702ae13873
commit
49815a1d8d
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
//Header
|
||||
get_header('top');
|
||||
|
||||
echo '404';
|
||||
|
||||
//Footer
|
||||
get_footer();
|
|
@ -1,3 +1,4 @@
|
|||
<?php get_header(); ?>
|
||||
<div class="container-fluid p-0 capa-colecoes">
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
|
@ -161,3 +162,5 @@
|
|||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<?php get_footer(); ?>
|
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
get_header();
|
||||
|
||||
get_template_part('template-parts/loop');
|
||||
|
||||
get_footer();
|
|
@ -0,0 +1,6 @@
|
|||
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
|
||||
<?php endwhile; else: ?>
|
||||
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
|
||||
<?php endif; ?>
|
Loading…
Reference in New Issue