15 lines
212 B
HTML
15 lines
212 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
{% include header.html %}
|
|
<main class="container">
|
|
{{ content }}
|
|
</main>
|
|
{% include sidebar.html %}
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|