Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions blog_app/static/blog_app/css/homepage.css
Original file line number Diff line number Diff line change
Expand Up @@ -341,4 +341,15 @@ body{
grid-template-columns: repeat(3,1fr);
column-gap: 2rem;
row-gap: 2rem;
}
.all-postheading {
display: flex;
align-items: end;
justify-content: space-between;
}

.all-postheading a{
text-decoration: none;
color: var(--text-color);

}
16 changes: 13 additions & 3 deletions blog_app/templates/blog-app/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,19 @@ <h2>Building your API Stack</h2>

<!-- ========== all BLOG POSTS ========== -->
<section class="all-post">
<h1 style="margin-top: 60px; color: #101828; font-size: 24px; font-weight: 600;">
All Blog Posts
</h1>
<div class="all-post__heading">
<h1
style="
margin-top: 60px;
color: #101828;
font-size: 24px;
font-weight: 600;
"
>
All Blog Posts
</h1>
<a href="{% url 'blog' %}">See All</a>
</div>

<div class="posts">
<div class="single-post">
Expand Down