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.
 
 
 

31 lines
824 B

<!DOCTYPE html>
<html>
<head>
{{ partial "head.html" . }}
<title>{{ .Title }}</title>
</head>
<body>
<div class="section" id="splash">
{{ if .Site.Params.mainMenu }}
{{ range .Site.Params.mainMenu }}
<div class="big-link">
<a href="{{.link}}">
{{.text}}
</a>
</div>
{{ end }}
{{ else }}
{{ range .Site.Sections }}
<div class="big-link">
<a href="{{.Permalink}}">
{{.Title}}
</a>
</div>
{{ end }}
{{ end }}
</div>
</body>
</html>