fixed listings

master
Ingolf Wagner 2021-08-23 19:30:11 +02:00
parent 97b1a98600
commit d1dc0f1ce4
Signed by: palo
GPG Key ID: 76BF5F1928B9618B
6 changed files with 31 additions and 3 deletions

View File

@ -1,5 +1,5 @@
---
title: "Tinc"
title: "tinc"
date: 2018-07-07T21:43:24+02:00
tags:
- NixOS

8
content/slides/_index.md Normal file
View File

@ -0,0 +1,8 @@
---
title: "Ingolf Wagner - Tech Articles"
date: 2021-07-24T21:43:24+02:00
---
# Slides
Here is a collection of Slides I presented to people. Feel free to use and download them.

View File

@ -1,7 +1,7 @@
---
title: terranix
date: 2019-08-23
info: An introduction on terranix for nixos users.
summary: An introduction on terranix for nixos users.
scheme: light
qrcode-link: qr-tech-ingolf-wag.svg
---

View File

@ -3,7 +3,7 @@ title: Why NixOS
date: 2019-04-26
scheme: light
qrcode-link: why-nixos-qrcode.svg
info: |
summary: |
A Presentation about NixOS which only focuses on the positive sides of NixOS.
It should give listeners an impression on what they gain,
when using NixOS as their Operation System.

20
layouts/slides/list.html Normal file
View File

@ -0,0 +1,20 @@
{{ define "main" }}
<div class="content">
{{ .Content }}
<ul class="pages-list">
{{ range .Pages.ByDate.Reverse }}
<li class="page-list-item">
<a href="{{.URL}}">
<h3> {{ .Title }} </h3>
<p>
{{ .Param "summary" }}
</p>
</a>
</li>
{{ end }}
</ul>
</div>
{{ end }}