docspell/website/site/templates/shortcodes/figure.html

11 lines
321 B
HTML
Raw Normal View History

2020-07-27 20:13:22 +00:00
<figure class="image">
2020-08-21 22:18:56 +00:00
{% if page is defined %}
{% set len = page.components | length %}
{% set p = page.components | slice(end=len - 1) | join(sep='/') %}
{% else %}
{% set p = section.components | join(sep='/') %}
{% endif %}
2020-07-27 20:13:22 +00:00
<img src="{{ get_url(path=p ~ "/" ~ file) }}">
</figure>