14 lines
312 B
HTML
Raw Permalink Normal View History

2020-05-19 22:59:37 -04:00
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<nav>{% include nav.html %}</nav>
<div class="wrapper">
<main>{{ content }}</main>
<footer>{% include footer.html %}</footer>
</div>
2020-07-21 21:05:19 -04:00
{% include link-previews.html wrapperQuerySelector="content" %}
2020-05-19 22:59:37 -04:00
</body>
</html>