-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html.hbs
More file actions
78 lines (71 loc) · 3.46 KB
/
Copy pathindex.html.hbs
File metadata and controls
78 lines (71 loc) · 3.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.svg" sizes="any" type="image/svg+xml">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Puzzles – from Simon Tatham’s portable puzzle collection and more</title>
<meta name="description" content="Over fifty logic puzzles and games you can play in your web browser, for free.">
<meta name="application-name" content="Puzzles">
{{#if canonicalUrl}}
<link rel="canonical" href="{{ canonicalUrl }}">
{{/if}}
<link rel="stylesheet" href="/src/css/home.css">
<script nomodule>{{{ noModuleHeadScript }}}</script>
<script>{{{ colorSchemeInitScript }}}</script>
<script type="module" crossorigin src="{{ preflightSrc }}"></script>
<script type="module" src="/src/home-page.ts"></script>
</head>
<body>
<home-screen>
<header slot="header">
<img class="logo" src="/favicon.svg" alt="" role="presentation">
<div class="title">
<h1>Puzzles</h1>
</div>
<div class="subtitle">from Simon Tatham’s
portable puzzle collection and more</div>
<div class="controls">
<a class="help-button" href="help/">
<img src="/node_modules/lucide-static/icons/circle-question-mark.svg" alt="">Help</a>
</div>
</header>
<section slot="intro">
<p>This is a collection of over fifty logic puzzles and games
you can play right in your web browser.
Each puzzle has multiple difficulty levels and variations,
with unlimited, randomly generated games.
And it’s all completely free: no upsells, no ads, no trackers.</p>
<p>This web app should run in any recent browser.
You can use a touch screen, mouse or keyboard.
It even works <a href="help/install">offline</a>.</p>
<p>Enjoy!</p>
<p>P.S., Looking for free Sudoku? It’s called <a href="solo">Solo</a> here,
also available in <a href="solo?type=3x3xda">diagonal</a> (X-style),
<a href="solo?type=9jda">jigsaw</a>, <a href="solo?type=3x3ka">killer</a>,
and <a href="solo?type=4x4db">mega</a> (Hexadoku) variants.
Mathdoku is called <a href="keen">Keen</a>. And if you like that type of puzzle,
also check out <a href="towers">Towers</a> and <a href="unequal">Unequal</a>.</p>
<p class="warning">⚠️ This app is still <strong>actively being developed.</strong>
While it should be (mostly) usable, there are 🚧 incomplete parts,
🥽 experiments in progress, and 🪲🐛🪰 plenty of bugs.
Things might change or break without warning.</p>
</section>
<noscript>
<section class="warning">
⚠️ The puzzles are implemented in JavaScript.
To play them, you will need to enable JavaScript in your browser.
</section>
</noscript>
<footer slot="footer">
<div>Credits, privacy info, copyright notices and licenses are in the
<a href="https://github.com/medmunds/puzzles-web">source code</a>
</div>
<div><small>In some countries, names of similar/related puzzles may be
trademarks belonging to others. Use here does not imply affiliation
or endorsement by their owners.</small></div>
</footer>
</home-screen>
{{{ analytics_html }}}
</body>
</html>