{% if o.image-profile == 'img' %}

{% elsif o.image-profile == 'imgbb' %}
{% assign P = o.image | src_extract | imagesize %}{% assign Ps = P | size %}
{% if Ps == 2 %}
{% assign px = P[0] | times: P[1] %}
{% if px < site.px_max %}
{{ o.image }}
{% else %}
image too large! (max: {{ site.px_max | decimals | divided_by: 1000000 | decimals }}Mpx )
{% endif %}
{% else %}
image not found!
{% endif %}
{% endif %}