website/themes/notebook/layouts/index.html

43 lines
1.4 KiB
HTML

{{ 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.
</p>
<p>
<img src="/images/v0.10.1-title.png" class="center">
</p>
<p>
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>
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 5 .Site.Pages.ByPublishDate.Reverse }}
<h1><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h1>
{{ partial "metadata.html" . }}
<div>{{ .Content }}</div>
{{ end }}
</div>
</div>
{{ end }}