Add base header footer

This commit is contained in:
Tyler Perkins
2023-06-27 21:35:17 -04:00
parent 0200086036
commit ebb1b01c3e
9 changed files with 63 additions and 5 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,3 @@
<head>
<link rel="stylesheet" href="{{ "css/clortox.css" | relURL }}">
</head>

View File

@@ -1,4 +1,4 @@
<header>
<header class="navbar sticky">
<a href="{{ "/" | relURL }}">Home</a>
<a href="{{ "/about/" | relURL }}">About</a>
</header>

View File

@@ -0,0 +1,14 @@
.navbar {
margin: 0;
background: rgb(11,11,12);
height: 3em;
border-color: white;
border-bottom: 5px;
overflow: hidden;
}
.sticky {
position: fixed;
top: 0;
width: 100%;
}