{% from 'simple/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.date_of_publication %}
{{ _("Published date") }}: {{ result.date_of_publication.l10n_date("long", "UI") }}
{% 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.views %}
{{ _('Views') }}: {{ result.views }}
{% endif -%}
{%- if result.content -%}

{{- result.content | safe -}}

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

{{- result.comments -}}

{%- endif -%} {%- if result.metadata %}
{{ result.metadata|safe }}
{% endif -%} {{- result_sub_footer(result) -}} {{- result_footer(result) }}