2021-01-04 03:29:13 +00:00
|
|
|
{{ define "main" }}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
|
|
|
<h1>Welcome to SketchyMaze.com</h1>
|
|
|
|
|
2021-04-01 05:11:59 +00:00
|
|
|
<p>
|
|
|
|
<strong>Sketchy Maze</strong> is a drawing-based maze game themed around
|
2022-01-13 05:40:44 +00:00
|
|
|
hand-drawn maps on paper.
|
2021-04-01 05:11:59 +00:00
|
|
|
</p>
|
|
|
|
|
2021-07-11 22:05:25 +00:00
|
|
|
<p>
|
2022-01-10 00:08:41 +00:00
|
|
|
<img src="/images/v0.10.1-title.png" class="center">
|
2021-07-11 22:05:25 +00:00
|
|
|
</p>
|
|
|
|
|
2021-04-01 05:11:59 +00:00
|
|
|
<p>
|
2022-01-13 05:40:44 +00:00
|
|
|
While the game includes some built-in levels you can play, its main feature
|
|
|
|
is the editor. You can draw your own maps and make them look like anything
|
|
|
|
you want, picking your colors and deciding which are solid and which
|
|
|
|
are fire, and then drag-and-drop some 'doodads' such as keys, doors, and
|
|
|
|
enemies to make it interesting and then <strong>play</strong> it.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
The game is currently available as an early <strong>beta</strong>
|
2021-04-01 05:11:59 +00:00
|
|
|
release. See the <a href="/download/">Downloads</a> to try it out!
|
|
|
|
</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>
|
2021-07-11 22:05:25 +00:00
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
2021-09-13 03:36:30 +00:00
|
|
|
{{ range first 5 .Site.Pages.ByPublishDate.Reverse }}
|
2021-07-20 06:02:03 +00:00
|
|
|
<h1><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h1>
|
|
|
|
{{ partial "metadata.html" . }}
|
|
|
|
<div>{{ .Content }}</div>
|
2021-07-11 22:05:25 +00:00
|
|
|
{{ end }}
|
2021-01-04 03:29:13 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-01-10 00:08:41 +00:00
|
|
|
{{ end }}
|