-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (94 loc) · 3.9 KB
/
index.html
File metadata and controls
110 lines (94 loc) · 3.9 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE HTML>
<html>
<head>
<title>Polyloop</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="icon" type="image/png" sizes="32x32" href="play/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="play/favicon-16x16.png">
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<div class="logo">
<img src="images/logo-256x256.png" alt="Polyloop Logo" class="logo-img" />
</div>
<div class="content">
<div class="inner">
<h1>Polyloop</h1>
<p>Complete the loop</p>
</div>
</div>
<nav>
<ul>
<li><a href="/play/index.html">Play now</a></li>
<li><a href="#download">Download</a></li>
<li><a href="#about">About</a></li>
<!--<li><a href="#elements">Elements</a></li>-->
</ul>
</nav>
</header>
<!-- Main -->
<div id="main">
<!-- Download -->
<article id="download">
<h2 class="major">Download</h2>
<h3>Coming Soon!</h3>
<p>Native apps are a work in progress. These links will be updated once the game is uploaded.</p>
<div class="badges">
<a href="https://play.google.com/store/apps/details?id=com.Lightskov.Polyloop" target="_blank">
<img src="images/google-play-badge.png" alt="Get it on Google Play" class="badge" />
</a>
<a href="https://apps.apple.com/app/id6740048150" target="_blank">
<img src="images/app-store-badge.png" alt="Download on the App Store" class="badge" />
</a>
</div>
<p>Prefer playing in your browser? <a href="/play/index.html">Play now</a>!</p>
</article>
<!-- About -->
<article id="about">
<h2 class="major">About</h2>
<span class="image main"><img src="images/lightskov_studio.png" alt="" /></span>
<p>Polyloop is made by Lightskov, LLC as a side project of Geoff Landskov and based out of Bellevue, WA USA. Polyloop is an implementation of the classic <a href="https://en.wikipedia.org/wiki/Slitherlink">Slitherlink</a> logic puzzle.</p>
<p>This game was heavily inspired by <a href="https://www.chiark.greenend.org.uk/~sgtatham/puzzles/">Simon Tatham's Portable Puzzle Collection</a>. I spent countless hours playing Loopy and always wished there was a standalone more complete version. Polyloop is my attempt at that. The techniques to generate the puzzles and solutions in Polyloop are largely from Loopy.</p>
<p>Hope you enjoy!</p>
</article>
<!-- Contact -->
<article id="contact">
<h2 class="major">Contact</h2>
<p>For support or other enquiries email us contact@playpolyloop.com or join the Polyloop Discord server</p>
<ul class="icons">
<li><a href="https://discord.gg/kmwJV9KD7E" class="icon brands fa-discord"><span class="label">Discord</span></a></li>
</ul>
</article>
</div>
<!-- Footer -->
<footer id="footer">
<p class="copyright">© 2024 Lightskov, LLC. <a href="#contact">Contact</a>. <a href="privacy_policy.html">Privacy Policy</a>. Design: <a href="https://html5up.net">HTML5 UP</a>.</p>
</footer>
</div>
<!-- BG -->
<div id="bg"></div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</footer>
</div>
<!-- BG -->
<div id="bg"></div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>