updated to zola for static site gen

This commit is contained in:
Michael Chalupiak
2026-01-25 21:30:25 -05:00
parent 231d34bd7f
commit 0600a58895
14 changed files with 183 additions and 6 deletions

3
public/404.html Normal file
View File

@@ -0,0 +1,3 @@
<!doctype html>
<title>404 Not Found</title>
<h1>404 Not Found</h1>

3
public/README.md Normal file
View File

@@ -0,0 +1,3 @@
# Website
This is a repo for my website. Pushes to this repo should automatically reflect an update to the site

10
public/elasticlunr.min.js vendored Normal file

File diff suppressed because one or more lines are too long

24
public/index.html Normal file
View File

@@ -0,0 +1,24 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MChalupiak.com</title>
<link rel="stylesheet" href="style.css" />
</head>
<div id="header">
<div class="header-link"><a href="index.html">Home</a></div>
<div class="header-link">Resume</div>
<div class="header-link">Blog</div>
<div class="header-link">
<a href="https://git.mchalupiak.com">Portfolio</a>
</div>
<!-- <div class="header-link">
<a href="services.html">Services</a>
</div>
-->
</div>
<div id="body">
<h1>WIP</h1>
</div>
</html>

4
public/robots.txt Normal file
View File

@@ -0,0 +1,4 @@
User-agent: *
Disallow:
Allow: /
Sitemap: https://www.mchalupiak.com/sitemap.xml

View File

@@ -0,0 +1 @@
window.searchIndex = {"fields":["title","body"],"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5","index":{"body":{"root":{"docs":{},"df":0}},"title":{"root":{"docs":{},"df":0}}},"documentStore":{"save":true,"docs":{"https://www.mchalupiak.com/":{"body":"","id":"https://www.mchalupiak.com/","title":""}},"docInfo":{"https://www.mchalupiak.com/":{"body":0,"title":0}},"length":1},"lang":"English"}

31
public/services.html Normal file
View File

@@ -0,0 +1,31 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MChalupiak.com</title>
<link rel="stylesheet" href="style.css" />
</head>
<div id="header">
<div class="header-link"><a href="index.html">Home</a></div>
<div class="header-link">Resume</div>
<div class="header-link">Blog</div>
<div class="header-link">
<a href="https://git.mchalupiak.com">Portfolio</a>
</div>
<!-- <div class="header-link">
<a href="https://searx.mchalupiak.com">Services</a>
</div>
-->
</div>
<div id="body">
Here are some services I host alongside my website. Check them out!
<ul>
<li>
<a href="https://searx.mchalupiak.com">Searx search engine</a>
</li>
<li><a href="https://git.mchalupiak.com">Gitea git server</a></li>
<li><a href="mailto:mikec@mchalupiak.com">Email</a></li>
</ul>
</div>
</html>

6
public/sitemap.xml Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.mchalupiak.com/</loc>
</url>
</urlset>

41
public/style.css Normal file
View File

@@ -0,0 +1,41 @@
body {
margin-top: 0;
margin-left: 0;
margin-right: 0;
background-color: 282d28;
color: A0B0A0;
}
#header {
margin: 0;
width: 100%;
height: 3.5rem;
text-align: center;
vertical-align: middle;
display: flex;
justify-content: space-evenly;
background-color: 181b18;
}
.header-link {
margin: auto;
vertical-align: middle;
color: sandybrown;
text-decoration: none;
font-size: 1.1rem;
}
a {
color: sandybrown;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#body {
margin: auto;
width: 100%;
height: 100%;
}