Compare commits

...

3 commits

5 changed files with 6 additions and 8 deletions

View file

@ -1,6 +1,6 @@
--- ---
title: "Yuki's blog" title: "Yuki's blog"
authors: [ "Yuki" ] authors: [ "yukijoou" ]
--- ---
Hello, I'm Yuki! Welcome to my blog \:\) Hello, I'm Yuki! Welcome to my blog \:\)

View file

@ -1,6 +1,6 @@
--- ---
title: "Welcome to my blog" title: "Welcome to my blog"
authors: [ "Yuki" ] authors: [ "yukijoou" ]
description: "Why would you even have a blog in 2023!?" description: "Why would you even have a blog in 2023!?"
date: 2023-05-29T22:00:00+02:00 date: 2023-05-29T22:00:00+02:00
--- ---

View file

@ -7,9 +7,7 @@
</div> </div>
<p class="authors"> <p class="authors">
{{ range $.Param "authors" }} {{ delimit ($.Param "authors") ", " }}
{{ . }}
{{ end }}
</p> </p>
</article> </article>

View file

@ -20,9 +20,7 @@
</div> </div>
<p class="authors"> <p class="authors">
{{ range $.Param "authors" }} {{ delimit ($.Param "authors") ", " }}
{{ . }}
{{ end }}
</p> </p>
</article> </article>
{{ end }} {{ end }}

View file

@ -14,6 +14,8 @@ body {
background-color: var(--background-color); background-color: var(--background-color);
color: var(--foreground-color); color: var(--foreground-color);
font-family: sans-serif, sans;
} }
header { header {