nyaa/nyaa/templates/infobubble.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">&times;</span>
</button>
</div>
<noscript>
<div class="alert alert-info" id="infobubble-noscript">
{{ info.info_text|safe }}
</div>
</noscript>
{% endif %}