tale/_layouts/default.html
Dominik Prodinger ee7c61b3af
Break up Navigation and Footer into Separate Files
Improve modularity by outsourcing the nav and footer tags into distinct
files.

Signed-off-by: Dominik Prodinger <prodinger.d@outlook.com>
2018-10-03 08:32:27 +02:00

17 lines
198 B
HTML

<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
{% include navigation.html %}
<main>
{{ content }}
</main>
{% include footer.html %}
</body>
</html>