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.
37 lines
1.2 KiB
37 lines
1.2 KiB
{{ define "main" }}
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<h1>Welcome to SketchyMaze.com</h1>
|
|
|
|
<p>
|
|
<strong>Sketchy Maze</strong> is a drawing-based maze game themed around
|
|
hand-drawn maps on paper. You can design your own level and make it look
|
|
like anything you want, and drag-and-drop some 'doodads' like Buttons,
|
|
Doors and Keys to add interactive elements and create puzzles and
|
|
obstacles.
|
|
</p>
|
|
|
|
<p>
|
|
<img src="https://www.sketchymaze.com/guidebook/images/main-menu.png" class="center">
|
|
</p>
|
|
|
|
<p>
|
|
The game is currently available as an early <strong>alpha</strong>
|
|
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>
|
|
|
|
<hr>
|
|
|
|
{{ range first 2 .Site.Pages.ByPublishDate.Reverse }}
|
|
<h1><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h1>
|
|
{{ partial "metadata.html" . }}
|
|
<div>{{ .Content }}</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
|