mirror of
https://github.com/inventree/inventree-docs.git
synced 2025-04-28 05:36:46 +00:00
15 lines
504 B
HTML
15 lines
504 B
HTML
{% if 'readthedocs.org' in config.docs_dir %}
|
|
{% set assets = '/en/latest/assets' %}
|
|
{% else %}
|
|
{% set assets = '/assets' %}
|
|
{% endif %}
|
|
|
|
{% if 'http' in src %}
|
|
{% set img_url = src %}
|
|
{% else %}
|
|
{% set img_url = assets + '/images/' + src %}
|
|
{% endif %}
|
|
|
|
<div class='item{% if active %} active{% endif %}'>
|
|
<img class='center' src='{{ img_url }}' alt='{{ alt }}' style='{% if min_height %}min-height: {{ min_height }}; {% endif %}{% if max_height %}max-height: {{ max_height }}; {% endif %}'>
|
|
</div> |