init repo

This commit is contained in:
oiseauroch
2023-07-20 19:45:55 +02:00
commit 96faa20062
186 changed files with 38664 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<div class="no-prose">
{% for asset in page.assets -%}
{%- if asset is matching(name) -%}
{% set image = resize_image(path=asset, height=320, op="fit_height") %}
{% set full_image = resize_image(path=asset, width=1024, height=1024, op="fit") %}
<a href="{{ full_image.url }}" target="_blank">
<img src="{{ image.url }}" />
</a>
{%- endif %}
{%- endfor %}
</div>