summaryrefslogtreecommitdiff
path: root/themes/vapor/layouts/index.html
blob: e97bba49d7a6a807758b3807d3e4359c92f83814 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{{ define "title" -}}
{{ .Title | title }}
{{- end }}
{{ define "main" -}}
{{ .Content }}

<style>
.center {
    text-align: center ;
}
h3 {
    color: #00f9ff;
    text-shadow: 2px 2px 0px #ff00ff;

}
</style>

<div class="center">
    <p>Thank you for visiting my site.</p> 
    <p>Add my RSS feed to stay updated: <a href="index.xml">RSS FEED</a>.</p>

    <hr>

    <p>

        <h3>Site info:</h3>
        Currently I do not have a specific plan for this site, besides dedicating it to <i>liquids</i>. 
        If you have any ideas or suggestions, feel free to email me: <a href="mailto:skiznet@aol.com">here</a>.
    
        <br>
    </p> 
    <h3>Site links:</h3>
</div>

<ul>
    <li><a href="/articles/">Blog</a></li>
    <li><a href="https://schizoid.party">Schizoid Party</a></li>
</ul>

<script data-goatcounter="https://ill.goatcounter.com/count"
        async src="//gc.zgo.at/count.js"></script>

<!--
<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 }}