ee7c61b3af
Improve modularity by outsourcing the nav and footer tags into distinct files. Signed-off-by: Dominik Prodinger <prodinger.d@outlook.com>
16 lines
198 B
HTML
16 lines
198 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
|
|
{% include navigation.html %}
|
|
|
|
<main>
|
|
{{ content }}
|
|
</main>
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|