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();
|
|
@ -2,7 +2,7 @@
|
||||||
//Header
|
//Header
|
||||||
get_header();
|
get_header();
|
||||||
|
|
||||||
get_template_part( 'single-colecoes' );
|
get_template_part('single-colecoes');
|
||||||
|
|
||||||
//Footer
|
//Footer
|
||||||
get_footer();
|
get_footer();
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php get_header(); ?>
|
||||||
<div class="container-fluid p-0 capa-colecoes">
|
<div class="container-fluid p-0 capa-colecoes">
|
||||||
<nav aria-label="breadcrumb">
|
<nav aria-label="breadcrumb">
|
||||||
<ol class="breadcrumb">
|
<ol class="breadcrumb">
|
||||||
|
@ -160,4 +161,6 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</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