updated to zola for static site gen
This commit is contained in:
3
public/404.html
Normal file
3
public/404.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<!doctype html>
|
||||
<title>404 Not Found</title>
|
||||
<h1>404 Not Found</h1>
|
||||
10
public/elasticlunr.min.js
vendored
Normal file
10
public/elasticlunr.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -7,14 +7,16 @@
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
</head>
|
||||
<div id="header">
|
||||
<div class="header-link">About</div>
|
||||
<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">Git</a>
|
||||
<a href="https://git.mchalupiak.com">Portfolio</a>
|
||||
</div>
|
||||
<div class="header-link">
|
||||
<a href="https://searx.mchalupiak.com">Searx</a>
|
||||
<!-- <div class="header-link">
|
||||
<a href="services.html">Services</a>
|
||||
</div>
|
||||
-->
|
||||
</div>
|
||||
<div id="body">
|
||||
<h1>WIP</h1>
|
||||
4
public/robots.txt
Normal file
4
public/robots.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
User-agent: *
|
||||
Disallow:
|
||||
Allow: /
|
||||
Sitemap: https://www.mchalupiak.com/sitemap.xml
|
||||
1
public/search_index.en.js
Normal file
1
public/search_index.en.js
Normal 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
31
public/services.html
Normal 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
6
public/sitemap.xml
Normal 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>
|
||||
@@ -9,7 +9,7 @@ body {
|
||||
#header {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
height: 3rem;
|
||||
height: 3.5rem;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
display: flex;
|
||||
@@ -22,13 +22,18 @@ body {
|
||||
vertical-align: middle;
|
||||
color: sandybrown;
|
||||
text-decoration: none;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.header-link > a {
|
||||
a {
|
||||
color: sandybrown;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#body {
|
||||
margin: auto;
|
||||
width: 100%;
|
||||
3
static/README.md
Normal file
3
static/README.md
Normal 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
|
||||
24
static/index.html
Normal file
24
static/index.html
Normal 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/mchalupiak/">Portfolio</a>
|
||||
</div>
|
||||
<!-- <div class="header-link">
|
||||
<a href="services.html">Services</a>
|
||||
</div>
|
||||
-->
|
||||
</div>
|
||||
<div id="body">
|
||||
<h1>WIP</h1>
|
||||
</div>
|
||||
</html>
|
||||
31
static/services.html
Normal file
31
static/services.html
Normal 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>
|
||||
41
static/style.css
Normal file
41
static/style.css
Normal 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%;
|
||||
}
|
||||
16
zola.toml
Normal file
16
zola.toml
Normal file
@@ -0,0 +1,16 @@
|
||||
# The URL the site will be built for
|
||||
base_url = "https://www.mchalupiak.com"
|
||||
|
||||
# Whether to automatically compile all Sass files in the sass directory
|
||||
compile_sass = true
|
||||
|
||||
# Whether to build a search index to be used later on by a JavaScript library
|
||||
build_search_index = true
|
||||
|
||||
[markdown]
|
||||
|
||||
[markdown.highlighting]
|
||||
theme = "catppuccin-mocha"
|
||||
|
||||
[extra]
|
||||
# Put all your custom variables here
|
||||
Reference in New Issue
Block a user