{% comment %} * * This include lets you easily display an alert. To use this include no `.html` ending is necessary. * * You can use the following kinds of alerts: * * - warning (foundation built-in) * - info (foundation built-in) * - success (foundation built-in) * - alert (foundation built-in) * - text (foundation built-in) * - terminal (custom, see Alerts in _sass/_09_elements.scss) * - ... (define your own: .alert-box. { @include alert-style();) * * You can even use markdown and -tags inside the alert, but beware to use " and ' properly; for example: * * {% include alert info='Show an info alert with outstanding information.' %} * * {% include alert info='Show an info alert with *outstanding* [information](#info).' %} * * {% include alert info='Show an info alert with *outstanding* information.' %} * * You can also call for additional classes to be put on the alert div: * * {% include alert success="Yay! you did it!" classes='round' %} * {% endcomment %} {% for entry in include %} {% if entry[0] == 'classes' %}{% continue %}{% endif %}
{{ entry[1] | markdownify }}
{% endfor %}