Addition of base.njk
This commit is contained in:
parent
ef6363b3bd
commit
691968ceac
|
@ -0,0 +1,25 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
|
<title>{{title}}</title>
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="styles/styles.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
{% include "header.html" %}
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
{{ content | safe }}
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
{% include "footer.html" %}
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html}
|
||||||
|
|
Loading…
Reference in New Issue