mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 19:05:01 -05:00
Add <noscript> message
Avoids a blank page when JS is disabled.
This commit is contained in:
parent
61b0425128
commit
0c79b9a3ee
1 changed files with 4 additions and 1 deletions
|
@ -2,10 +2,13 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>IRC client</title>
|
||||
<title>gamja IRC client</title>
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<noscript>
|
||||
<p>Unfortunately gamja requires JavaScript. Please enable it!</p>
|
||||
</noscript>
|
||||
<script type="module">
|
||||
import { html, render } from "/lib/index.js";
|
||||
import App from "/components/app.js";
|
||||
|
|
Loading…
Reference in a new issue