updated to zola for static site gen
This commit is contained in:
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%;
|
||||
}
|
||||
Reference in New Issue
Block a user