mirror of
https://github.com/ProjectSynthoria/SynthoriaArchive.git
synced 2025-03-12 23:36:54 +02:00
15 lines
462 B
HTML
15 lines
462 B
HTML
![]() |
{% import "infobubble_content.html" as info %}
|
||
|
{% if info.info_text %}
|
||
|
<div class="alert alert-info alert-dismissible" id="infobubble" data-ts='{{ info.info_ts }}' hidden>
|
||
|
{{ info.info_text|safe }}
|
||
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||
|
<span aria-hidden="true">×</span>
|
||
|
</button>
|
||
|
</div>
|
||
|
<noscript>
|
||
|
<div class="alert alert-info" id="infobubble-noscript">
|
||
|
{{ info.info_text|safe }}
|
||
|
</div>
|
||
|
</noscript>
|
||
|
{% endif %}
|