searx/templates/simple/result_templates/paper.html
{% 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 }} {% 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) -}} {{- result_footer(result) }}