EyeTrackVR-Docs/docs/_includes/custom/alerts/alerts_alternative/important.html
ZanzyTHEbar 262941a0bb update
- Added example usages for all alert_alternatives
- Added bootstrap.min.css file and font-awesome.min.css file.
2022-06-03 19:34:26 +02:00

17 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--
The include uses markdown="span" as an attribute, which means kramdown will process the entire content as a span.
You cant use block elements such as p or div or pre.
If you need these elements, you can either manually surround the content with the HTML from the include,
or you can use the example in the alerts_alternative.yml file.
An example of how to use these:
{% include note.html content="This is my note. All the content I type here is treated as a single paragraph." %}
{% include warning.html content="This is my warning. All the content I type here is treated as a single paragraph." %}
{% include important.html content="This is my important. All the content I type here is treated as a single paragraph." %}
{% include callout.html type="info" content="This is my callout. All the content I type here is treated as a single paragraph." %}
Example of writing on multiple lines:
{% include note.html content="This is my note. All the content I type here is treated as a single paragraph. <br/><br/> Now I'm typing on a new line." %}
-->
<div markdown="span" class="alert alert-warning" role="alert"><i class="fa fa-warning"></i> <b>Important:</b> {{include.content}}</div>