Blog list: better layout
This commit is contained in:
parent
acc6b594f8
commit
f0dc1483a4
3 changed files with 9 additions and 5 deletions
|
@ -1,5 +1,6 @@
|
|||
<div class="blog_entry">
|
||||
<div class="blog_entry_meta">
|
||||
<span class="blog_entry_date">{{ .Date | time.Format ":date_medium" }}</span>
|
||||
{{ with .GetTerms "blog/tags" }}
|
||||
<ul class="blog_entry_tags">
|
||||
{{ range . -}}
|
||||
|
@ -7,7 +8,6 @@
|
|||
{{- end }}
|
||||
</ul>
|
||||
{{ end }}
|
||||
<span class="blog_entry_date">{{ .Date | time.Format ":date_medium" }}</span>
|
||||
</div>
|
||||
<a href="{{ .Permalink }}" class="blog_entry_title">{{ .Title }}</a>
|
||||
</div>
|
||||
|
|
|
@ -4,7 +4,9 @@
|
|||
|
||||
#entries {
|
||||
.blog_entry {
|
||||
padding: 25px 0;
|
||||
padding: 5px 0;
|
||||
margin: 20px 0;
|
||||
display: block;
|
||||
|
||||
.blog_entry_title {
|
||||
display: block;
|
||||
|
@ -13,7 +15,7 @@
|
|||
}
|
||||
.blog_entry_meta {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
column-gap: 20px;
|
||||
|
||||
|
|
|
@ -1,14 +1,16 @@
|
|||
@charset "UTF-8";
|
||||
@import url("fonts.css");
|
||||
#entries .blog_entry {
|
||||
padding: 25px 0; }
|
||||
padding: 5px 0;
|
||||
margin: 20px 0;
|
||||
display: block; }
|
||||
#entries .blog_entry .blog_entry_title {
|
||||
display: block;
|
||||
font-size: 1.1em;
|
||||
text-align: left; }
|
||||
#entries .blog_entry .blog_entry_meta {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
column-gap: 20px;
|
||||
font-style: italic;
|
||||
|
|
Loading…
Reference in a new issue