Test_theme/beetroot_template/result_templates/paper.html

2.5 KiB

{% from 'beetroot/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer, result_link with context %} {{ result_header(result, favicons, image_proxify) -}}
{%- if result.publishedDate %}
{{ _("Published date") }}:
{% endif -%} {%- if result.authors %}
{{ _("Author") }}:{{ result.authors | join(", ") }}
{% endif -%} {%- if result.journal -%}
{{- _("Journal") }}:{{ result.journal -}} {%- if result.volume -%}  {{- result.volume -}} {%- if result.number -%} .{{- result.number -}} {%- endif -%} {%- endif -%} {%- if result.pages -%}  {{- result.pages -}} {%- endif -%}
{%- endif %} {%- if result.editor %}
{{ _("Editor") }}:{{ result.editor }}
{% endif -%} {%- if result.publisher %}
{{ _("Publisher") }}:{{ result.publisher }}
{% endif -%} {%- if result.type %}
{{ _("Type") }}:{{ result.type }}
{% endif -%} {%- if result.tags %}
{{ _("Tags") }}:{{ result.tags | join(", ")}}
{%- endif -%} {%- if result.doi %}
{{ _("DOI") }}:{{ result_link(doi_resolver + result.doi, result.doi) }}
{% endif -%} {%- if result.issn %}
{{ _("ISSN") }}:{{ result.issn | join(", ") }}
{% endif -%} {%- if result.isbn %}
{{ _("ISBN") }}:{{ result.isbn | join(", ") }}
{% endif -%}
{%- if result.content -%}

{{- result.content | safe -}}

{%- endif -%} {%- if result.comments -%}

{{- result.comments -}}

{%- endif -%}

{%- if result.pdf_url -%}{{ result_link(result.pdf_url, _('PDF')) }}{%- endif -%} {%- if result.html_url -%}{{ result_link(result.html_url, _('HTML')) }}{%- endif -%} {%- if result.doi %}{{ result_link('https://www.altmetric.com/details/doi/' + result.doi, 'Altmetric') }}{% endif -%}

{{- result_sub_footer(result, proxify) -}} {{- result_footer(result) }}