Fixed tags html

This commit is contained in:
Thomas
2021-03-29 17:10:23 +02:00
parent a315f5eb24
commit e303848b62
3 changed files with 14 additions and 5 deletions

View File

@@ -1,7 +1,6 @@
--- ---
title: NexusV7 title: NexusV7
tags: Static site generator tags: rust handlebars markdown static site generator
tags: rust, static site generator
date: 2021-01-01 date: 2021-01-01
yearonly: true yearonly: true
url: nexusv7.html url: nexusv7.html

View File

@@ -197,6 +197,16 @@ footer {
background-color: rgb(219, 219, 219); background-color: rgb(219, 219, 219);
} }
.contentContainer article h5 {
margin: 0px;
}
.contentContainer article h6 {
margin: 0px;
color: #999;
font-size: 11px;
}
.contentContainer img{ .contentContainer img{
width: 60%; width: 60%;
display:block; display:block;

View File

@@ -1,12 +1,12 @@
<div class="contentContainer"> <div class="contentContainer">
<article> <article>
<h1>{{post.title}}</h1> <h1>{{post.title}}</h1>
<h5> <h5>{{post.date_printable}}</h5>
<h6>
{{#each post.tags}} {{#each post.tags}}
<span>{{this}}</span> <span>{{this}}</span>
{{/each}} {{/each}}
</h5> </h6>
<h5>{{post.date_printable}}</h5>
<hr/> <hr/>
{{{post.body}}} {{{post.body}}}
<hr/> <hr/>