drewcassidy
82a7cd0814
* 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"
30 lines
547 B
HTML
30 lines
547 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>
|