12 lines
243 B
HTML
12 lines
243 B
HTML
|
<!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>
|
||
|
</body>
|
||
|
</html>
|