feat: created index pages for posts and recipes

This commit is contained in:
Leyla Becker 2026-02-12 15:10:58 -06:00
parent f93207b4e3
commit 0d5bb62775
4 changed files with 110 additions and 16 deletions

View file

@ -64,6 +64,28 @@ a {
color: var(--secondary-color);
}
/* Section header with view all link */
.section-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.section-header h1 {
margin: 1.5rem 0 1rem;
}
.view-all {
margin-top: 1.5rem;
font-size: 0.9rem;
color: var(--secondary-color);
text-decoration: none;
}
.view-all:hover {
text-decoration: underline;
}
/* Blog post list */
.post-list {
list-style: none;