mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 02:44:59 -05:00
17 lines
556 B
HTML
17 lines
556 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; frame-src 'none'; object-src 'none'; connect-src *;">
|
|
<title>gamja IRC client</title>
|
|
<link rel="stylesheet" href="./style.css">
|
|
<script type="module" src="./main.js"></script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="manifest" href="manifest.json">
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<p>This application requires JavaScript. Please enable it!</p>
|
|
</noscript>
|
|
</body>
|
|
</html>
|