diff options
| -rw-r--r-- | content/_index.md | 7 | ||||
| -rw-r--r-- | layouts/guide/single.html | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/content/_index.md b/content/_index.md index 026eab7..b736f71 100644 --- a/content/_index.md +++ b/content/_index.md @@ -6,10 +6,17 @@ date: 2025-09-14T11:51:17+02:00 Hello lovely-little-thing browsing the web, welcome to my website :) ## Blog + {{< article-list category="blog" number="5" >}} You can subscribe to the [RSS feed](/index.xml) if you want to. Also checkout this [stuff](/stuff). +## Guide + +I also like to write guides + +{{< article-list category="guide" number="5">}} + ## Me You can contact me if you want to. diff --git a/layouts/guide/single.html b/layouts/guide/single.html index 6efdfe0..2c0b57b 100644 --- a/layouts/guide/single.html +++ b/layouts/guide/single.html @@ -1,4 +1,9 @@ {{define "main"}} + +{{ with .Params.icon }} +<img style="height: 10em;" src="/icons/{{ . }}"> +{{ end }} + <article> <h2>Table of Contents</h2> {{.TableOfContents}} |
