drewcassidy.me/_layouts/page.html
drewcassidy 82a7cd0814 make CC licenced, CSS overhaul
* re-add footer to the wite
* add CC licensing and appropriate licensing information to the footer
* refactor css so footer can sit below the "page"
2023-04-19 01:22:07 -07:00

31 lines
548 B
HTML

<!DOCTYPE html>
<html>
<head>
{% include head.html %}
<meta property="og:type" content="website"/>
</head>
<body>
<div id="page">
<header>
<a href="/" id="name"><b>Andrew Cassidy</b></a>
<span class="slash">/</span> {{ page.title }}
</header>
<div id="box">
{% include sidebar.html %}
<main id="content">
{{ content }}
</main>
</div>
</div>
<footer>
{% include footer.html %}
</footer>
</body>
</html>