Category template base
This commit is contained in:
parent
11d432ef7e
commit
848da0224e
|
@ -39,6 +39,6 @@ if (
|
||||||
</div>
|
</div>
|
||||||
<!-- /.row -->
|
<!-- /.row -->
|
||||||
</div>
|
</div>
|
||||||
<!-- /.container-responsive -->
|
<!-- /.container-fluid -->
|
||||||
|
|
||||||
<?php get_footer(); ?>
|
<?php get_footer(); ?>
|
|
@ -0,0 +1,22 @@
|
||||||
|
<?php get_header(); ?>
|
||||||
|
|
||||||
|
<div class="container-fluid mt-5">
|
||||||
|
<div class="row">
|
||||||
|
|
||||||
|
<div class="col-sm">
|
||||||
|
<div id="content" role="main">
|
||||||
|
<header class="mb-4 border-bottom">
|
||||||
|
<h1>
|
||||||
|
<?php _e('Category: ', 'tainacan'); echo single_cat_title(); ?>
|
||||||
|
</h1>
|
||||||
|
</header>
|
||||||
|
<?php get_template_part('template-parts/index-loop'); ?>
|
||||||
|
</div><!-- /#content -->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
|
||||||
|
</div><!-- /.row -->
|
||||||
|
</div><!-- /.container-fluid -->
|
||||||
|
|
||||||
|
<?php get_footer(); ?>
|
|
@ -12,6 +12,6 @@
|
||||||
<?php get_sidebar(); ?>
|
<?php get_sidebar(); ?>
|
||||||
|
|
||||||
</div><!-- /.row -->
|
</div><!-- /.row -->
|
||||||
</div><!-- /.container-responsive -->
|
</div><!-- /.container-fluid -->
|
||||||
|
|
||||||
<?php get_footer(); ?>
|
<?php get_footer(); ?>
|
Loading…
Reference in New Issue