mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 17:34:25 +04:00
* marketing site init * classname fix * marketing images * homepage components * gradient bg * Optimised images with calibre/image-actions * generate utilities for marketing pages, negative utilities, new filters, browser component * list separate fixes * marketing pages components * build fix * new marketing pages elements * add typd.js library to animate text * about page, markdown page * testimonials, new components, new marketing pages * unity avatar sizes * fix shape sizes * avatars unify * shape fixes * real estate page * Optimised images with calibre/image-actions * fix small rebase error * Fix mobile designs of features, faq and testimonials * Add marketing pages to the extra's menu * fix hero header design and include as app example design * Fix buttons nog centering on hero * Slightly increase bundlewatch size --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Robert-Jan de Dreu <160743+rjd22@users.noreply.github.com>
6 lines
399 B
HTML
6 lines
399 B
HTML
{% assign src = include.src %}
|
|
{% assign width = include.width | default: 507 %}
|
|
<picture>
|
|
<img src="{{ site.base }}/{{ src }}" srcset="{{ site.base }}/{{ src }} 1x, {{ site.base }}/{{ src | replace: '.png', '@2x.png' }} 2x" alt="{{ include.alt }}" class="img-fluid {{ include.class }}" width="{{ width }}"{% if include.height %} height="{{ include.height }}"{% endif %} loading="lazy">
|
|
</picture>
|