mirror of
https://github.com/inventree/inventree-docs.git
synced 2025-04-28 05:36:46 +00:00
15 lines
380 B
HTML
15 lines
380 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 src='{{ img_url }}' alt='{{ alt }}' style='width: 100%'>
|
|
</div> |