Skip to content

Commit

Permalink
Merge branch 'develop' into home
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagolamonte committed Mar 22, 2024
2 parents 1c00d4a + 2e3713d commit 9a329fc
Show file tree
Hide file tree
Showing 9 changed files with 309 additions and 214 deletions.
21 changes: 21 additions & 0 deletions themes/midia-ninja-theme/archive-afluente.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
/**
* The template for displaying archive pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*/
get_header();
?>

<div class="container">
<main class="content col-md-9">
<div class="posts">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content/post' ); ?>
<?php endwhile; ?>
</div>
<?php get_template_part( 'template-parts/content/pagination' ); ?>
</main>
</div>

<?php get_footer(); ?>
4 changes: 0 additions & 4 deletions themes/midia-ninja-theme/assets/scss/4-layout/_l-header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -492,10 +492,6 @@ header {
display: none;
}

@media (max-width: $desktop-width) {
margin-right: 0;
}

ul.menu {
padding-left: 0;
margin-bottom: 8px;
Expand Down
2 changes: 1 addition & 1 deletion themes/midia-ninja-theme/assets/scss/6-pages/_p-404.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
background-image: url($p_theme_assets + '/images/gif-404.gif');
background-repeat: no-repeat;
width: 300px;
height: 300px;
height: 316px;
background-size: 100%;
align-items: center;
/* text-align: center; */
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
.post-type-archive-afluente{
.content{
.posts{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
margin-top: 48px;
article{
.post-card{
display: flex;
flex-direction: column;
margin-bottom: 30px;
.post-card--thumb{
width: 370px;
height: 208px;
}
.post-card--content{
& .entry-title{
color: var(--PURE, #262626);
font-family: Manrope;
font-size: 24px;
font-style: normal;
font-weight: 800;
line-height: 120%; /* 28.8px */
letter-spacing: -0.72px;
}
& .entry-meta{

}
& .entry-date{
display: none;
}
& .entry-excerpt{
display: none;
}
}
}
}
}
}
}
Loading

0 comments on commit 9a329fc

Please sign in to comment.