Compare commits

..

2 commits

Author SHA1 Message Date
ec81bbd0a8
add witchauth to interesting-stuff
All checks were successful
ci/woodpecker/push/deploy-netlify Pipeline was successful
2023-09-06 07:34:03 +02:00
9fa4b5a1ba
add dedicated projects section template 2023-09-06 07:32:52 +02:00
3 changed files with 21 additions and 0 deletions

1
.gitignore vendored
View file

@ -28,3 +28,4 @@ hugo.linux
*.vsix
.DS_Store
.vscode/

View file

@ -39,6 +39,9 @@ A list of cool things, curated by me 🌠
- [https://themes.gohugo.io/themes/hugo-flex/](https://themes.gohugo.io/themes/hugo-flex/): Simple Website template
- [A4 Resume](https://themes.gohugo.io/themes/resume-a4/): Resume Template
## IAM
- [WitchAuth](https://codeberg.org/cyberwitch/witchauth) tries to empower small communities and groups to have an identity provider for easy management and better security through SSO.
## Mail
- [aerc](https://sr.ht/~rjarry/aerc) is an email client for your terminal

View file

@ -0,0 +1,17 @@
{{ define "page" }}
<content>
<h1>{{ .Title }}</h1>
<p>{{ .Content }}</p>
{{ range .Pages }}
<div class="section-page-item">
<h3>{{ .Title }}</h3>
<div class="details">
<time class="float-left">{{ .PublishDate | time.Format ":date_medium" }}</time>
</div>
<div class="summary">{{ .Summary }}</div>
<a href="{{ .RelPermalink }}">Read more &rarr;</a>
</div>
{{ end }}
</content>
{{ end }}