EyeTrackVR-Docs/docs/_includes/custom/alerts/Note.html
2022-06-20 21:13:32 +02:00

28 lines
1.3 KiB
HTML

<!-- Custom Alert Using an SVG -->
<!-- DO NOT FORMAT OR EDIT THIS DOCUMENT -->
<blockquote>
<p>
<span class="icon-span-note"><svg class="octicon octicon-note mr-2" viewBox="0 0 16 16" version="1.1" width="16"
height="16" aria-hidden="true">
<path fill-rule="evenodd"
d="M8 1.5a6.5 6.5 0 100 13 6.5 6.5 0 000-13zM0 8a8 8 0 1116 0A8 8 0 010 8zm6.5-.25A.75.75 0 017.25 7h1a.75.75 0 01.75.75v2.75h.25a.75.75 0 010 1.5h-2a.75.75 0 010-1.5h.25v-2h-.25a.75.75 0 01-.75-.75zM8 6a1 1 0 100-2 1 1 0 000 2z">
</path>
</svg><b>Note:</b>
{% if include.content.size > 150 %}
<p class="fs-3 fw-300">
{{ include.content }}
{% if include.hyper_link != null && include.hyper_link != "" %}
<a href="{{ include.hyper_link }}" target="_blank">{{ include.description }}</a>
{% endif %}
</p>
{% else %}
<small class="fs-3 fw-300">
{{ include.content }}
{% if include.hyper_link != null && include.hyper_link != "" %}
<a href="{{ include.hyper_link }}" target="_blank">{{ include.description }}</a>
{% endif %}
</small>
{% endif %}
</span>
</p>
</blockquote>