44 lines
1.3 KiB
HTML
44 lines
1.3 KiB
HTML
{{ $is_list := .is_list }}
|
|
{{ $ := .content }}
|
|
|
|
{{ if $is_list }}
|
|
<a class="btn btn-primary btn-outline btn-xs" href="{{ $.Permalink }}">
|
|
{{ i18n "btn_details" }}
|
|
</a>
|
|
{{ end }}
|
|
{{ with $.Params.url_pdf }}
|
|
<a class="btn btn-primary btn-outline{{ if $is_list }} btn-xs{{end}}" href="{{ . | absURL }}">
|
|
{{ i18n "btn_pdf" }}
|
|
</a>
|
|
{{ end }}
|
|
{{ with $.Params.url_slides }}
|
|
<a class="btn btn-primary btn-outline{{ if $is_list }} btn-xs{{end}}" href="{{ . | absURL }}">
|
|
{{ i18n "btn_slides" }}
|
|
</a>
|
|
{{ end }}
|
|
{{ with $.Params.url_video }}
|
|
<a class="btn btn-primary btn-outline{{ if $is_list }} btn-xs{{end}}" href="{{ . | absURL }}">
|
|
{{ i18n "btn_video" }}
|
|
</a>
|
|
{{ end }}
|
|
{{ with $.Params.url_code }}
|
|
<a class="btn btn-primary btn-outline{{ if $is_list }} btn-xs{{end}}" href="{{ . | absURL }}">
|
|
{{ i18n "btn_code" }}
|
|
</a>
|
|
{{ end }}
|
|
{{ with $.Params.url_dataset }}
|
|
<a class="btn btn-primary btn-outline{{ if $is_list }} btn-xs{{end}}" href="{{ . | absURL }}">
|
|
{{ i18n "btn_dataset" }}
|
|
</a>
|
|
{{ end }}
|
|
{{ with $.Params.url_project }}
|
|
<a class="btn btn-primary btn-outline{{ if $is_list }} btn-xs{{end}}" href="{{ . | absURL }}">
|
|
{{ i18n "btn_project" }}
|
|
</a>
|
|
{{ end }}
|
|
{{ range $.Params.url_custom }}
|
|
<a class="btn btn-primary btn-outline{{ if $is_list }} btn-xs{{end}}" href="{{ .url | absURL }}">
|
|
{{ .name }}
|
|
</a>
|
|
{{ end }}
|