1
0
Fork 0
self-hosting.riou.xyz/layouts/index.html
Julien Riou 8e018ba84d
Initial commit
Signed-off-by: Julien Riou <julien@riou.xyz>
2024-12-22 08:17:34 +01:00

24 lines
653 B
HTML

{{ define "main" }}
<h1>About</h1>
<p>
I'm <a href="https://julien.riou.xyz">Julien Riou</a>, an open source databases specialist, working for a major cloud
provider in Europe. This website is the presentation of my self-hosting projects.
</p>
<br/>
<h1>Posts</h1>
<div class="posts-list">
{{ with .Site.GetPage "/posts" }}
{{ range (sort .Data.Pages "Date" "desc" (where .Pages ".Params.private" "!=" true))}}
<div class="post">
<div class="date">{{ .PublishDate.Format "Jan 2, 2006" }}</div>
<a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a>
</div>
{{ end }}
{{ end }}
</div>
{{ end }}