26 lines
460 B
HTML
26 lines
460 B
HTML
<!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}
|
|
|