summaryrefslogtreecommitdiff
path: root/themes/schizo/layouts/index.html
blob: baeb9bfcfeb0c39daf8c9144e0ebf7591136bc80 (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
{{ define "title" -}}
{{ .Title | title }}
{{- end }}
{{ define "main" -}}
{{ .Content }}

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

<div class="center">
    <p>I am Skiz, this is my webpage. 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>
        I plan to use this site to share my thoughts, opinions, and knowledge; On certain topics. 

        <h3>Site info:</h3>
        This website is hosted on FreeBSD with NGINX as the web server. I use
        HUGO to make the site and the theme is a modified version of Luke
        Smith's LUGO theme. <br>
        <a href="https://freebsd.org"><img src="/images/gifs/fbsdpower.gif"></a>
    </p> 
    <h3>Site links:</h3>
</div>

<ul>
    <li><a href="/articles/">Blog</a></li>
    <li><a href="/contact/">Contact</a></li>
    <li><a href="https://ftp.schizoid.party/">FTP Directory</a></li>
</ul>


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