website/themes/notebook/layouts/index.html

37 lines
1.2 KiB
HTML
Raw Normal View History

2021-01-04 03:29:13 +00:00
{{ 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>
2021-07-11 22:05:25 +00:00
<p>
2021-09-04 23:05:09 +00:00
<img src="/images/v0.8.0-title.png" class="center">
2021-07-11 22:05:25 +00:00
</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>
2021-07-11 22:05:25 +00:00
<hr>
2021-09-04 23:05:09 +00:00
{{ range first 4 .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>
2021-07-20 06:02:03 +00:00
{{ end }}