SketchyMaze.com website built using Hugo. https://www.sketchymaze.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.7 KiB

4 years ago
{{ define "main" }}
<div class="row">
<div class="col-12">
3 years ago
<h1>Welcome to <em>Sketchy Maze!</em></h1>
4 years ago
<p>
<strong>Sketchy Maze</strong> is a drawing-based maze game themed around
3 years ago
hand-drawn maps on paper.
</p>
3 years ago
<p>
3 years ago
In <em>Sketchy Maze</em>, players may draw their own custom levels and play
them as in a 2D platformer-type game. You can make your levels look like anything
you want, and you decide which colors will be solid or which are fire; and then
drag some "doodads" such as buttons, keys and creatures into your level to
make it interesting. Oh, and those doodads? You can make your own, too, and
program them in JavaScript to do whatever you want!
3 years ago
</p>
3 years ago
<p>
The game also features a "Story Mode" with some built-in levels, and players may
also compose their own such
<a href="https://www.sketchymaze.com/guidebook/custom-levels/levelpacks.html">Level Packs</a>
to share with others, too!
</p>
<p>
3 years ago
<img src="/images/v0.11.0-title.png" class="center portrait">
3 years ago
</p>
3 years ago
<div class="text-center">
<em><small>Runs on:</small></em><br>
<span style="font-size: 42pt">
<i class="fab fa-ubuntu" title="Ubuntu (& Debian)" style="color: #e95420"></i>
<i class="fab fa-fedora" title="Fedora" style="color: #4e9dd3; padding: 0 12px"></i>
<i class="fab fa-linux" title="GNU/Linux (PC and ARM)"></i>
<i class="fab fa-windows" title="Microsoft Windows PC" style="color: #0067b8; padding: 0 12px"></i>
<i class="fab fa-apple pl-4" title="Apple macOS (Intel)" style="color: #acacac; text-shadow: 1px 1px 1px #000"></i>
</span>
</div>
3 years ago
<p>
3 years ago
This game currently runs on <strong>GNU/Linux, Windows</strong> and <strong>macOS</strong>
(Intel) computers and on Linux handhelds like the Pinephone or Librem 5 (arm64).
It is currently available as an early, <strong>open beta</strong>
release. See the <a href="/download/">Downloads</a> page to try it out, free!
</p>
<p>
See <a href="/about/">About</a>, <a href="/faq/">FAQ</a> and the
<a href="/guidebook">Guidebook</a> for more information about the game.
</p>
3 years ago
<hr>
3 years ago
{{ range first 5 .Site.Pages.ByPublishDate.Reverse }}
3 years ago
<h1><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h1>
{{ partial "metadata.html" . }}
<div>{{ .Content }}</div>
3 years ago
{{ end }}
4 years ago
</div>
</div>
{{ end }}