Shortcodes für Tabelle und Downloads eingebaut sowie eigenen Typ für feed gebaut

This commit is contained in:
mdn 2023-01-07 23:24:56 +01:00
parent 23649f935f
commit f8c72825f0
9 changed files with 137 additions and 4 deletions

View file

@ -0,0 +1,8 @@
{{ $dataName := .Get "data" }}
{{ $baseDir := path.Dir .Page.File }}
<ul>
{{ range (index .Site.Data (split $dataName "/")) }}
<li><a href="{{ (path.Join $baseDir .filename) | absURL }}">{{ .title }}{{ with .filesize }} ({{ int (div (div . 1024) 1024) }} MB){{ end }}</a><br/>{{ .comment }}</li>
{{ end }}
</ul>