first commit

This commit is contained in:
Julieñ
2024-06-30 11:39:42 +02:00
commit 280b106499
15751 changed files with 78478 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
---
{{- $imgglob := printf "*%s" (path.Join .File.Dir "*") -}}
{{- $resources := where (resources.Match $imgglob) "ResourceType" "image" }}
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
weight: 0
albumthumb: "{{ cond (gt (len $resources) 0) (index $resources 0) "" }}"
draft: false
## Optional additional meta info for resources list
# alt: Image alternative and screen-reader text
# phototitle: A title for the photo
# description: A sub-title or description for the photo
resources:
{{ range $elem_index, $elem_val := $resources -}}
- src: "{{ . }}"
weight: {{ add (mul $elem_index 10) 10 }}
{{ end -}}
---