16 lines
456 B
HTML
16 lines
456 B
HTML
{% assign intro = site.data.pages[page.path].intro %}
|
|
{% if intro != null %}
|
|
{% if site.data.pages[page.path].intro-type == 'xml' %}
|
|
<div style="display:inline-block">
|
|
{% include {{intro}} type=include.type id=include.id %}
|
|
</div>
|
|
{% else %}
|
|
{% capture intro-content %}
|
|
{% include {{intro}} type=include.type id=include.id %}
|
|
{% endcapture %}
|
|
<div style="display:inline-block" markdown="1">
|
|
{{ intro-content | markdownify }}
|
|
</div>
|
|
{% endif %}
|
|
{% endif %}
|