Files
dustin.coffee-jekyll-blog/_layouts/default.html
2025-08-25 19:13:59 -04:00

25 lines
455 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{% include head.html %}
</head>
<body>
<div class="wrapper">
<header class="wrapper-header">
{% include header.html %}
</header>
<main class="wrapper-main">
<div class="main-content">
{{ content }}
</div>
</main>
</div>
<footer class="wrapper-footer">
{% include footer.html %}
</footer>
</body>
</html>