blob: c644063ff7fc0f40a9a4f89f322d4b759e01cfc7 (
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
64
65
66
67
68
69
70
71
|
{{ define "title" -}}
{{ .Title | title }}
{{- end }}
{{ define "main" -}}
{{ .Content }}
<style>
.center {
text-align: center ;
}
h3 {
color: #ffa500;
}
</style>
<div class="center">
<p>Welcome! 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 Debian 12 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>
Now, a fair warning: Some statements on this website may be satire, jokes, or simply false.
<br>
<a href="https://kernel.org"><img src="/images/gifs/linux.gif"></a>
</p>
<h3>Site links:</h3>
</div>
<ul>
<li><a href="/articles/">Blog</a></li>
<li><a href="/qa/">Q&A</a></li>
<li><a href="/contact/">Contact</a></li>
<li><a href="/photography/">My photography <i>(loads slowly)</i></a></li>
<li><a href="https://git.schizoid.party/">Git Server</a></li>
<li><a href="https://ftp.schizoid.party/">FTP Directory</a></li>
<!--<li><a href="https://beta.schizoid.party/">Beta-Sandbox Testing Site</a></li>-->
</ul>
<script data-goatcounter="https://schizoid.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> – {{ end
-}}
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{- if .Param "authorsinlist" }}
{{ with .Params.authors }}
by
{{ delimit . ", " " and " }}
{{end}}
{{ end -}}
</li>
{{- end }}
</ul>
-->
{{- end }}
|