2017-08-01 20:25:17 +00:00
|
|
|
<section class="attachments {{ with .Get "style"}}{{.}}{{ end }}">
|
2017-07-27 19:42:07 +00:00
|
|
|
<label>
|
2017-08-01 20:25:17 +00:00
|
|
|
<i class="fa 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>
|
|
|
|
<a href="{{ printf "%s/%s%s/%s" $.Site.BaseURL $fileDir ($.Scratch.Get "filesName") .Name }}" >
|
|
|
|
{{.Name}}
|
|
|
|
</a>
|
|
|
|
({{div .Size 1024 }} ko)
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
{{else}}
|
|
|
|
<li>
|
|
|
|
<a href="{{ printf "%s/%s%s/%s" $.Site.BaseURL $fileDir ($.Scratch.Get "filesName") .Name }}" >
|
|
|
|
{{.Name}}
|
|
|
|
</a>
|
|
|
|
({{div .Size 1024 }} ko)
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2017-08-01 20:25:17 +00:00
|
|
|
<div>
|
|
|
|
{{.Inner}}
|
2017-07-27 19:42:07 +00:00
|
|
|
</section>
|
|
|
|
|