drewcassidy.me/_layouts/home.html
drewcassidy 670a2fa8be Add blog post list and placeholder blog post
• 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
2023-04-19 01:16:52 -07:00

25 lines
402 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> {{ page.title }}
</header>
<main>
{% include sidebar.html %}
<article id="content">
{{ content }}
</article>
</main>
<!--{% include footer.html %}-->
</body>
</html>