1
0

Add published date to blog list

This commit is contained in:
Ryan Fox 2020-10-29 06:06:46 +00:00
parent 88b0ca3dee
commit 366d7fc857
Signed by: flewkey
GPG Key ID: 94F56ADFD848851E
2 changed files with 10 additions and 1 deletions

View File

@ -122,6 +122,14 @@ h4 {
font-size: 20px;
}
h1.reduced, h2.reduced, h3.reduced, h4.reduced {
line-height: 1.5;
}
p.faded, span.faded {
color: #555555;
}
div.post-head h1 {
margin-bottom: 18px;
}

View File

@ -1,5 +1,6 @@
<div class="block">
<a href="{full_path}"><h3>{title}</h3></a>
<a href="{full_path}"><h3 class="reduced">{title}</h3></a>
<span class="faded">Published on {date}</span>
<p>{auto_description}</p>
<a href="{full_path}">Read more</a>
</div>