27 lines
445 B
HTML
27 lines
445 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||
|
|
||
|
<title>{{ page.title }}</title>
|
||
|
|
||
|
<link rel="stylesheet" href="/assets/css/styles.css">
|
||
|
|
||
|
<body>
|
||
|
{% include menu.html %}
|
||
|
|
||
|
<div class="main">
|
||
|
<h1>Where to find me</h1>
|
||
|
<div class="contact">
|
||
|
{{ content }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
<footer>
|
||
|
{% include footer.html %}
|
||
|
</footer>
|
||
|
|
||
|
</html>
|