You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/ui-default/templates/components/noscript_note.html

16 lines
464 B
HTML

{% macro render() %}
{% if not isIE(handler.request.headers['user-agent']) and not handler.session.legacy %}
<noscript><div class="section__body no-padding">
<blockquote class="warn">
<p>{{ _('This page needs JavaScript to work.') }}</p>
</blockquote>
</div></noscript>
{% else %}
<div class="section__body no-padding">
<blockquote class="warn">
<p>{{ _('This page needs JavaScript to work.') }}</p>
</blockquote>
</div>
{% endif %}
{% endmacro %}