width="{{ asset.getWidth('img') }}" height="{{ asset.getHeight('img') }}" , `This classes don't work as intended they just do nothing.`
ブログを作成していますが、エントリを作成すると、画像が画面全体に表示されます。また、応答時に短くなりません。
{% set myAssetQuery = craft.assets() %}
{% set images = myAssetQuery.all() %}
<ul>
{% for image in images %}
<li><img src="{{ asset.getUrl('img') }}" width="{{ asset.getWidth('img') }}" height="{{ asset.getHeight('img') }}"></li>
{% endfor %}
</ul>
{% for entry in craft.entries.section('secscrpt') %}
{% for block in entry.matriz %}
{{ block.body }}
{% endfor %}
{% endfor %}