website/templates/shortcodes/resize_image.html

4 lines
311 B
HTML
Raw Normal View History

{% set basepath = page.path | trim_start_matches(pat="/") %}
{% set imgurl = resize_image(path=basepath~path, width=1600, height=1600, op="fit") | trim_start_matches(pat=config.base_url) | trim_start_matches(pat="http://127.0.0.1:1111") %}
<img src="{{ imgurl }}" {% if class %}class="{{class}}"{% endif %} />