Oprava whitespace overflow v background-image
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Emil Miler 2023-11-09 10:36:59 +01:00
parent 5cdc5cb846
commit b2de34dc0c
1 changed files with 9 additions and 9 deletions

View File

@ -18,15 +18,15 @@
{% endmacro print_recipe %}
{% macro recipe_preview_image(recipe) %}
{% set_global image = "../static/temp.jpg" %}
{% for asset in recipe.assets %}
{% if asset is matching("[img.](jpg|png)$") %}
{% set_global image = asset %}
{% break %}
{% endif %}
{% endfor %}
{% set image = resize_image(path=image, width=300, height=300, op="fill") %}
{{ image.url }}
{%- set_global image = "../static/temp.jpg" %}
{%- for asset in recipe.assets %}
{%- if asset is matching("[img.](jpg|png)$") %}
{%- set_global image = asset %}
{%- break %}
{%- endif %}
{%- endfor %}
{%- set image = resize_image(path=image, width=300, height=300, op="fill") %}
{{- image.url -}}
{% endmacro recipe_preview_image %}
{% macro pagination() %}