add: category, date sorting
Add category layouts and date sorting
This commit is contained in:
parent
9b66a79a8c
commit
579491f216
7 changed files with 85 additions and 25 deletions
15
app/assets/css/blog/overview.css
Normal file
15
app/assets/css/blog/overview.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
.BlogOverview {
|
||||
& .category-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 1rem;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
& .article-overview {
|
||||
width: 100%;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2rem;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue