Skip to content
Snippets Groups Projects
Commit 1bbe0dbc authored by alexisben's avatar alexisben
Browse files

refacto paper actions

parent e96094b1
No related branches found
No related tags found
No related merge requests found
<section>
<p itemprop="abstract">{{ partial "PrepareHTML" .Params.Abstract }}</p>
<div role="group">
{{ if isset .Params "pdf" }}
{{- $pdf := partial "GetMedia" .Params.pdf -}}
<a href="{{ $pdf.url }}" download>{{ i18n "commons.download.pdf" }}</a><br>
{{ end }}
<a href="#" class="squared-button" download>PDF (435 ko)</a>
{{ partial "papers/actions.html" (dict
"paper" .
"only_file" true
) }}
</div>
</section>
{{ $only_file := .only_file | default false }}
{{ with .paper }}
{{ $modalId := printf "modal-%s" .Slug }}
<div class="paper-actions" role="group">
{{ if not $only_file }}
{{- if .Params.abstract -}}
<button class="squared-button" type="button" data-open-modal="{{ $modalId }}">{{ i18n "volumes.abstract" }}</button>
{{ partial "papers/modal.html"
(dict
"modalId" $modalId
"title" .Title
"abstract" .Params.abstract
) }}
{{- end -}}
{{- end -}}
{{- if .Params.pdf -}}
{{- $file := partial "GetMedia" .Params.pdf -}}
{{- $size := partial "GetHumanSize" $file.size -}}
{{- $extension := partial "GetExtensionFile" $file.name -}}
{{- $extension_with_size := (printf "%.2f %s - %s" $size.weight $size.unit $extension) -}}
{{- $title_with_size := printf "%s (%s)" $file.name $extension_with_size -}}
{{- $url := $file.url -}}
{{- if site.Params.keycdn -}}
{{- $url = $file.direct_url -}}
{{- end -}}
{{ if $file }}
<figure>
<a href="{{ $url }}" download="{{ partial "PrepareHTML" $file.name }}" target="_blank" title="{{ i18n "commons.link.blank_aria" (dict "Title" $title_with_size) }}" class="squared-button">
<figcaption>
<abbr title="{{ i18n (printf "commons.extensions.%s" $extension) }}">{{ $extension }}</abbr>
- {{ $size.weight }} <abbr title="{{ $size.full_unit }}">{{ $size.unit }}</abbr>
</figcaption>
</a>
</figure>
{{ end }}
{{- end -}}
</div>
{{ end }}
\ No newline at end of file
......@@ -26,22 +26,6 @@
{{ end }}
</p>
</div>
<div class="paper-actions" role="group">
<button class="squared-button" type="button" data-open-modal="{{ $modalId }}">{{ i18n "volumes.abstract" }}</button>
{{ if .Params.pdf }}
{{- $pdf := partial "GetMedia" .Params.pdf -}}
{{- $pdf_size := partial "GetHumanSize" $pdf.size -}}
<a href="{{ $pdf.url }}" download>
{{- i18n "commons.pdf_with_size" (dict "Size" $pdf_size) }}
</a>
{{ end }}
<a class="squared-button" href="#" download>PDF (435 ko)</a>
</div>
{{ partial "papers/modal.html"
(dict
"modalId" $modalId
"title" .Title
"abstract" .Params.abstract
) }}
{{ partial "papers/actions.html" (dict "paper" . ) }}
</article>
{{ end }}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment