summaryrefslogtreecommitdiff
path: root/themes/vapor/layouts/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/vapor/layouts/index.html')
-rw-r--r--themes/vapor/layouts/index.html70
1 files changed, 70 insertions, 0 deletions
diff --git a/themes/vapor/layouts/index.html b/themes/vapor/layouts/index.html
new file mode 100644
index 0000000..b289a4e
--- /dev/null
+++ b/themes/vapor/layouts/index.html
@@ -0,0 +1,70 @@
+{{ 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="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> &ndash; {{ end
+-}}
+ <a href="{{ .RelPermalink }}">{{ .Title }}</a>
+ {{- if .Param "authorsinlist" }}
+ {{ with .Params.authors }}
+ by
+ {{ delimit . ", " " and " }}
+ {{end}}
+ {{ end -}}
+</li>
+{{- end }}
+</ul>
+-->
+{{- end }}
+