myFirstSite/_layouts/default.html

13 lines
242 B
HTML
Raw Normal View History

2023-11-26 21:31:37 +00:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/assets/css/styles.css">
</head>
<body>
{% include navigation.html %}
{{ content }}
</body>
</html>