filesafe/views/_partial/noscript-refresh.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

11 lines
422 B
Plaintext

{#
To conform with standard, put <noscript> for <meta http-equiv> inside <head>.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
And may as well put <style> tag here, just in case.
#}
<noscript>
<style>body > section:not(#noscript) { display: none !important; }</style>
<!-- Redirect after 3 seconds -->
<meta http-equiv="refresh" content="3;url={{ noscriptRefreshUrl or 'nojs' }}">
</noscript>