filesafe/views/_partial/noscript.njk
Bobby Wibowo 1eafafe8a7
Updates
* Fixed home page going out of bound due to git commit message.

* Git commit message will no longer have dotted underline. The old solution by using border-bottom wasn't suitable when the text is being split by word-break, but text-decoration-style wouldn't look as good due to its distance from the text being too close.

* Updated bulma to 0.7.2.

* Bumped v1 and v3 version strings.

* Various other small tweaks.
2018-12-08 05:10:35 +07:00

19 lines
784 B
Plaintext

{#
I thought of making a redirect with http-equiv="refresh", but it's too quick that people
barely have any time to read the message which explains why the redirect is necessary.
So yeah, I decided to stick with making people click on the link which leads to
the No-JS uploader, if they really want to use the service.
#}
<noscript>
<style>body > section:not(#noscript) { display: none !important; }</style>
<section id="noscript" class="hero is-fullheight">
<div class="hero-body">
<div class="container has-text-centered">
<p>You have JavaScript disabled, but this page requires JavaScript to function.</p>
<p>Please <a href="nojs">click here</a> if you want to try out our No-JS uploader.</p>
</div>
</div>
</section>
</noscript>