Last active
June 28, 2025 16:18
-
-
Save majabojarska/43c30c2c246e8067b05be219df3888f8 to your computer and use it in GitHub Desktop.
Zola auto-webp image with lightweight preview
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% if src %} | |
| {%- if src is matching("[.](jpg|jpeg|png|webp)$") -%} | |
| {# The trick is to resize first, which provides the original size for the 1:1 size format conversion #} | |
| {% set converted_small = resize_image(path=src, width=800, op="fit_width", format="webp") %} | |
| {% set converted_full = resize_image(path=src, width=converted_small.orig_width, height=converted_small.orig_height, format="webp") %} | |
| {% set url_full = converted_full.url %} | |
| {% set url_small = converted_small.url %} | |
| {%- else %} | |
| {# Conversion unsupported, just use the source #} | |
| {% if src is not starting_with("http") %} | |
| {# ... then prepend the site's base URL to the image's URL. #} | |
| {% set url_full = config.base_url ~ src %} | |
| {% endif %} | |
| {% set url_small = url_full %} | |
| {%- endif %} | |
| <div class="post-img"> | |
| <a href="{{ url_full }}" target="_blank"> | |
| <img src="{{ url_small | safe }}" | |
| {% if alt %} alt="{{ alt }}"{% endif %} | |
| {%- if style %} style="{{ style | safe }}" {%- endif %} | |
| decoding="async" loading="lazy"/> | |
| </a> | |
| </div> | |
| {% endif %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .post-img { | |
| display: block; | |
| text-align: center; | |
| a { | |
| img { | |
| max-width: 100%; | |
| width: 100%; | |
| @media screen and (min-width: 768px) { | |
| width: 75%; | |
| } | |
| border-radius: 1em; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://www.getzola.org/documentation/content/shortcodes/