Skip to content
Snippets Groups Projects
notification.html 791 B
{% if include.title and include.description %}
<div class="toast" data-autohide="false" id="notification">
    <div class="toast-header">        
        <i class="fas fa-square text-danger"></i>&nbsp;
        <strong class="mr-auto">{{ include.title }}</strong>
        <button type="button"
                class="close"
                data-dismiss="toast"
                aria-label="Close"
                onclick="removeToast('notification')">
            <span aria-hidden="true"><i class="fas fa-times"></i></span>
        </button>
    </div>
    <div class="toast-body">
        {{ include.description }}
    </div>
</div>
{% else %}
    <!--
        WARNING: frontpage/notification.html was included,
        but parameter title or description was not defined
    -->
{% endif %}