41 lines
658 B
HTML
41 lines
658 B
HTML
{{ define "main" }}
|
|
|
|
<section class="red">
|
|
<div class="container">
|
|
<pong-game></pong-game>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="container">
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
{{ .Content }}
|
|
</div>
|
|
</section>
|
|
|
|
<section class="container">
|
|
<h1>News</h1>
|
|
{{ $subpage := site.GetPage "news" }}
|
|
{{ with $subpage.Pages }}
|
|
<ul class="news-list">
|
|
{{ range . }}
|
|
<li>
|
|
<a href="{{ .RelPermalink }}">
|
|
<span>{{ .Date.Format "2006-01-02" }}</span>
|
|
{{ .Title }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|
|
|
|
<a href="#">news archiv >>></a>
|
|
</section>
|
|
|
|
<section>
|
|
<chaos-map></chaos-map>
|
|
</section>
|
|
|
|
{{ end }}
|
|
|
|
|