28 lines
577 B
HTML
Executable File
28 lines
577 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<meta name="description" content="{{ page.description }}">
|
|
|
|
<title>{{ page.title }}</title>
|
|
|
|
<link rel="preload" as="style" href="/assets/css/styles.css">
|
|
<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>
|
|
|
|
<footer>
|
|
{% include footer.html %}
|
|
</footer>
|
|
</body>
|
|
</html>
|