filesafe/views/_partial/noscript.njk
Bobby Wibowo 36a41c9711
Added floating home button to auth page
Moved floating home button codes to views/_partial/floating-home.njk.

Added some variables support into some partial NJK files.

album.njk now uses partial versions for noscript codes.

A few other things.

Bumped v1 version string and rebuilt client assets.
2020-05-26 03:49:54 +07:00

17 lines
492 B
Plaintext

<noscript>
<section id="noscript" class="hero is-fullheight">
<div class="hero-body">
<div class="container has-text-centered">
<p>This page requires JavaScript to function.</p>
<p>
{%- if noscriptMessage -%}
{{ noscriptMessage | safe }}
{%- else -%}
If you are not redirected to the No-JS uploader, please <a href="nojs">click here</a>.
{%- endif -%}
</p>
</div>
</div>
</section>
</noscript>