1
|
<!DOCTYPE html>
|
2
|
<!--
|
3
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
4
|
|
5
|
Sample testing page
|
6
|
|
7
|
This file is part of Haketilo.
|
8
|
|
9
|
Copyright (C) 2021 jahoti <jahoti@tilde.team>
|
10
|
|
11
|
This program is free software: you can redistribute it and/or modify
|
12
|
it under the terms of the GNU Affero General Public License as
|
13
|
published by the Free Software Foundation, either version 3 of the
|
14
|
License, or (at your option) any later version.
|
15
|
|
16
|
This program is distributed in the hope that it will be useful,
|
17
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
18
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
19
|
GNU Affero General Public License for more details.
|
20
|
|
21
|
You should have received a copy of the GNU Affero General Public License
|
22
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
23
|
-->
|
24
|
<html>
|
25
|
<head>
|
26
|
<meta name=charset value="latin1">
|
27
|
<title>Schrodinger's Document</title>
|
28
|
</head>
|
29
|
<body>
|
30
|
A nice, simple page for testing.
|
31
|
<script>
|
32
|
document.write('<p><b>Or so you thought...</b></p>');
|
33
|
</script>
|
34
|
</body>
|
35
|
</html>
|