Index basic skeleton

This commit is contained in:
marleyrae 2023-06-28 16:26:41 -07:00
parent dd70c0f063
commit b417d40185

31
src/index.liquid Normal file
View file

@ -0,0 +1,31 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Marley Rae</title>
</head>
<body>
<div class="Site">
<header class="Header">
<nav class="Nav">
<a href="/contact/">Contact</a>
</nav>
</header>
<main class="Main">
</main>
<footer class="Footer">
&copy; 2023
</footer>
</div>
</body>
</html>