2019-05-06 17:05:39 +00:00
|
|
|
{{ $_hugo_config := `{ "version": 1 }` }}
|
2017-08-01 20:25:17 +00:00
|
|
|
<section class="attachments {{ with .Get "style"}}{{.}}{{ end }}">
|
2017-07-27 19:42:07 +00:00
|
|
|
<label>
|
2018-02-19 11:10:41 +00:00
|
|
|
<i class="fas fa-paperclip" aria-hidden="true"></i>
|
2017-07-27 19:42:07 +00:00
|
|
|
{{with .Get "title"}}{{.}}{{else}}{{T "Attachments-label"}}{{end}}
|
|
|
|
</label>
|
|
|
|
{{if eq .Page.File.BaseFileName "index"}}
|
|
|
|
{{$.Scratch.Add "filesName" "files"}}
|
|
|
|
{{else}}
|
|
|
|
{{$.Scratch.Add "filesName" (printf "%s.files" .Page.File.BaseFileName)}}
|
|
|
|
{{end}}
|
2017-08-01 20:25:17 +00:00
|
|
|
<div class="attachments-files">
|
2017-07-27 19:42:07 +00:00
|
|
|
{{ range (readDir (printf "./content/%s%s" .Page.File.Dir ($.Scratch.Get "filesName")) ) }}
|
|
|
|
{{ $fileDir := replace $.Page.File.Dir "\\" "/" }}
|
|
|
|
{{if ($.Get "pattern")}}
|
|
|
|
{{if (findRE ($.Get "pattern") .Name)}}
|
|
|
|
<li>
|
2018-01-06 22:27:36 +00:00
|
|
|
<a href="{{ (printf "%s%s/%s" $fileDir ($.Scratch.Get "filesName") .Name) | relURL }}" >
|
2017-07-27 19:42:07 +00:00
|
|
|
{{.Name}}
|
|
|
|
</a>
|
2020-11-12 09:48:55 +00:00
|
|
|
({{div .Size 1024 }} {{T "BinaryPrefix-kilobyte"}})
|
2017-07-27 19:42:07 +00:00
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
{{else}}
|
|
|
|
<li>
|
2018-01-06 22:27:36 +00:00
|
|
|
<a href="{{ (printf "%s%s/%s" $fileDir ($.Scratch.Get "filesName") .Name) | relURL }}" >
|
2017-07-27 19:42:07 +00:00
|
|
|
{{.Name}}
|
|
|
|
</a>
|
2020-11-12 09:48:55 +00:00
|
|
|
({{div .Size 1024 }} {{T "BinaryPrefix-kilobyte"}})
|
2017-07-27 19:42:07 +00:00
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2020-09-10 16:40:40 +00:00
|
|
|
</div>
|
2017-08-01 20:25:17 +00:00
|
|
|
{{.Inner}}
|
2017-07-27 19:42:07 +00:00
|
|
|
</section>
|
|
|
|
|