summaryrefslogtreecommitdiff
path: root/themes/schizo/layouts/index.html
blob: 117cf2735429784ee42ed35a958fc9148b3e4c9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{{ define "title" -}}
{{ .Title | title }}
{{- end }}
{{ define "main" -}}
{{ .Content }}

<style>
p {
    text-align: center ;
}
h3 {
    color: #ffa500;
}
</style>

<p>I am Skiz, this is my webpage. Thank you for visiting my site.</p>

<h3>Posts</h3>

<ul>
{{- range.Pages }}
<li>
        {{- if .Param "datesinlist" }}<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> &ndash; {{ end
-}}
        <a href="{{ .RelPermalink }}">{{ .Title }}</a>
        {{- if .Param "authorsinlist" }}
        {{ with .Params.authors }}
                by
                {{ delimit . ", " " and " }}
        {{end}}
        {{ end -}}
</li>
{{- end }}
</ul>
{{- end }}