Files
com.xaymar.www/_includes/blocks/_base.liquid
T

8 lines
419 B
Plaintext
Raw Normal View History

2022-11-26 05:12:02 +01:00
<div {% if include.id %}id="{{include.id}}"{% endif %} class="block block-{{ include.type }}
2022-02-25 19:26:01 +01:00
{% if include.float == "clear" %}float-clear{% elsif include.float %}float float-{{ include.float }}{% endif %}
2022-11-26 05:12:02 +01:00
{% if include.align %}align-{{ include.align }}{% endif %}
{% if include.class %}{{ include.class }}{% endif %}" style="
2021-12-28 19:43:39 +01:00
{% if include.width %}width: {{ include.width }};{% endif %}">
2021-12-24 11:00:43 +01:00
{{ include.content }}
</div>