Initial commit
Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
commit
8e018ba84d
43 changed files with 14239 additions and 0 deletions
24
layouts/index.html
Normal file
24
layouts/index.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
{{ 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 }}
|
Loading…
Add table
Add a link
Reference in a new issue