{# -*- coding: utf-8 -*- This file is part of Invenio. Copyright (C) 2016-2021 CERN. Copyright (C) 2021 Graz University of Technology. Invenio is free software; you can redistribute it and/or modify it under the terms of the MIT License; see LICENSE file for more details. #} {# Generate a list different ways to embed a badge. #} {%- macro badges_formats_list(image_filename, target, alternative='DOI') %}

{{ _("Markdown") }}

[![{{ alternative }}]({{ image_filename }})]({{ target }})

{{ _("reStructedText") }}

.. image:: {{ image_filename }}
  :target: {{ target }}

{{ _("HTML") }}

<a href="{{ target }}"><img src="{{ image_filename }}" alt="{{ alternative }}"></a>

{{ _("Image URL") }}

{{ image_filename }}

{{ _("Target URL") }}

{{ target }}
{%- endmacro %}