-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
309 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
themes/midia-ninja-theme/assets/scss/6-pages/_p-archive-afluente.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.