7 lines
229 B
Plaintext
7 lines
229 B
Plaintext
|
|
{% capture maybe %}{% include {{ include.try }} %}{% endcapture %}
|
||
|
|
{% assign maybe = maybe | strip_newlines %}
|
||
|
|
{% if maybe.size > 0 %}
|
||
|
|
{{ maybe }}
|
||
|
|
{% elsif include.fallback %}
|
||
|
|
{% include {{ include.fallback }} %}
|
||
|
|
{% endif %}
|