shx-3d-render

main
Jan Umbach 2024-06-19 17:26:27 +02:00
parent 23c63b05e5
commit ccb36e4349
2 changed files with 6 additions and 2 deletions

View File

@ -2,7 +2,7 @@
{% if content_type == 'body' %}
<img src="{% render 'shx-logo' %}" width="200px" height="auto">
{% render 'shx-logo' class:"shx-loading-spinner-mainIcon" %}
{% elif content_type == 'head' %}

View File

@ -1 +1,5 @@
{{ "LogoMain.svg" | asset_url }}
{% assign class_name = class_name | default: '' %}
{% assign img_width = img_width | default: '100px' %}
{% assign img_height = img_height | default: 'auto' %}
<img src="{{ "LogoMain.svg" | asset_url }}" class="{{ class_name }}" width={{ img_width }} height={{ img_height }}>