• add blog post list • add css specificially for the blog and projects pages • make layouts more modular for including different CSS on each page • use HTML for directory pages for better use with Liquid
27 lines
484 B
HTML
27 lines
484 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
{% include head.html %}
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<a href="/" id="name"><b>Andrew Cassidy</b></a>
|
|
<span class="slash">/</span>
|
|
<a href="/Blog" class="dir">Blog</a>
|
|
<span class="slash">/</span> {{ page.title }}
|
|
</header>
|
|
|
|
<main>
|
|
{% include sidebar.html %}
|
|
|
|
<article id="content">
|
|
{{ content }}
|
|
</article>
|
|
</main>
|
|
<!--{% include footer.html %}-->
|
|
</body>
|
|
|
|
</html>
|