Fix #504 #532

Merged
elegaanz merged 1 commit from fix-504 into master 2019-04-19 14:49:23 +00:00
5 changed files with 8 additions and 4 deletions

View file

@ -138,4 +138,8 @@ html {
body > footer * { margin: 1em auto; }
.flex.wrap { flex-direction: column; }
.cards {
margin: 1rem 0 5rem;
}
}

View file

@ -74,7 +74,7 @@
@if posts.is_empty() {
<p>@i18n!(ctx.1, "No posts to see here yet.")</p>
}
<div class="cards">
<div class="cards spaced">
@for article in posts {
@:post_card(ctx, article)
}

View file

@ -24,7 +24,7 @@
])
}
<div class="cards">
<div class="cards spaced">
@for article in articles {
@:post_card(ctx, article)
}

View file

@ -16,7 +16,7 @@
])
@if !articles.is_empty() {
<div class="cards">
<div class="cards spaced">
@for article in articles {
@:post_card(ctx, article)
}

View file

@ -25,7 +25,7 @@
])
}
<div class="cards">
<div class="cards spaced">
@for article in articles {
@:post_card(ctx, article)
}