Adding code to support tags

Fixes #1
This commit is contained in:
Floyd Hightower
2021-07-23 12:24:51 -04:00
committed by José Guilherme Vanz
parent 7f8341ad1c
commit ba3949f07a
3 changed files with 42 additions and 0 deletions
+20
View File
@@ -352,6 +352,26 @@ tbody tr:nth-child(odd) th {
color: #9a9a9a;
}
.post-tags {
display: inline;
margin-bottom: 1rem;
color: #9a9a9a;
}
.post-tags ul {
margin: 0;
padding: 0;
display: inline;
}
.post-tags li {
display: inline;
}
.post-tags li:after {
content: ", ";
}
.post-tags li:last-child:after {
content: "";
}
/* Related posts */
.related {
padding-top: 2rem;