Skip to content

Commit

Permalink
customizados archive e category templates
Browse files Browse the repository at this point in the history
  • Loading branch information
diegorojas committed Feb 14, 2020
1 parent 015f467 commit 5d68a36
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 1 deletion.
55 changes: 55 additions & 0 deletions archive.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<?php
/**
* The template for displaying archive pages.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package coletivo
*/

get_header(); ?>

<div id="content" class="site-content">

<div class="page-header">
<div class="container">
<?php the_archive_title( '<h1 class="page-title">', '</h1>' ); ?>
<?php the_archive_description( '<div class="taxonomy-description">', '</div>' ); ?>
</div><!-- container -->
</div><!-- page-header -->

<?php if ( function_exists( 'coletivo_breadcrumb' ) ) : ?>
<?php echo coletivo_breadcrumb(); ?>
<?php endif; ?>

<div id="content-inside" class="container">
<main id="main" class="site-main" role="main">

<?php if ( have_posts() ) : ?>

<?php while ( have_posts() ) : the_post(); ?>

<?php
/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'template-parts/content', 'list' );
?>

<?php endwhile; ?>

<?php the_posts_navigation(); ?>

<?php else : ?>

<?php get_template_part( 'template-parts/content', 'none' ); ?>

<?php endif; ?>

</main><!-- #main -->
</div><!--#content-inside -->
</div><!-- #content -->

<?php get_footer(); ?>
19 changes: 18 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -976,8 +976,25 @@ body.blog .page-header {
padding-top:115px;
padding-bottom: 20px;
}

body.blog .page-header h1.page-title {
display: none;
display: none;
}

body.archive .page-header, body.category .page-header {
background-image: url( 'assets/images/blog-logo.png' );
background-position: center;
background-repeat: no-repeat;
padding-top:115px;
padding-bottom: 20px;
}

body.archive .page-header h1.page-title, body.category .page-header h1.page-title {
margin-bottom: -35px;
font-size: 14px;
text-align: center;
margin-top: 15px;
height: 45px;
}
.content-area .entry-content {
font-size: 17px;
Expand Down

0 comments on commit 5d68a36

Please sign in to comment.