2019-05-06 17:05:39 +00:00
|
|
|
{{ $_hugo_config := `{ "version": 1 }` }}
|
2021-07-17 09:58:28 +00:00
|
|
|
{{ $style := .Get "style" | default "neutral" }}
|
|
|
|
{{ $title := .Get "title" | default ("Attachments-label" | T) }}
|
2021-07-26 09:14:27 +00:00
|
|
|
{{ $sort := .Get "sort" | default "asc" }}
|
2021-07-17 09:58:28 +00:00
|
|
|
<section class="attachments {{ $style }}">
|
2021-08-23 21:57:56 +00:00
|
|
|
<div class="label">{{ $title }}</div>
|
|
|
|
<div class="attachments-files">
|
|
|
|
{{- $filesName := "files" }}
|
|
|
|
{{- if ne .Page.File.BaseFileName "index" }}
|
|
|
|
{{- $filesName = printf "%s.files" .Page.File.BaseFileName }}
|
|
|
|
{{- end}}
|
2021-07-17 10:37:24 +00:00
|
|
|
|
2021-08-23 21:57:56 +00:00
|
|
|
{{- $fileDir := replace .Page.File.Dir "\\" "/" }}
|
|
|
|
{{- $pattern := .Get "pattern" | default "" }}
|
|
|
|
{{- range sort (readDir (printf "content/%s%s" .Page.File.Dir $filesName) ) "Name" $sort }}
|
|
|
|
{{- if findRE $pattern .Name}}
|
|
|
|
{{- $size := .Size }}
|
|
|
|
{{- $unit := "Byte-symbol" }}
|
|
|
|
{{- if ge $size 1024 }}
|
|
|
|
{{- $size = div $size 1024 }}
|
|
|
|
{{- $unit = "Kilobyte-symbol" }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if ge $size 1024 }}
|
|
|
|
{{- $size = div $size 1024 }}
|
|
|
|
{{- $unit = "Megabyte-symbol" }}
|
|
|
|
{{- end }}
|
|
|
|
{{- $unitsymbol := $unit | T }}
|
2021-07-17 10:37:24 +00:00
|
|
|
|
2021-08-23 21:57:56 +00:00
|
|
|
<li>
|
|
|
|
<a href="{{ (printf "%s%s/%s" $fileDir $filesName .Name) | relLangURL }}">{{.Name}}</a>
|
|
|
|
({{$size}} {{$unitsymbol}})
|
|
|
|
</li>
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
</div>
|
|
|
|
{{- .Inner }}
|
2017-07-27 19:42:07 +00:00
|
|
|
</section>
|