website/_layouts/default.liquid

22 lines
571 B
Plaintext
Raw Normal View History

2022-03-04 20:38:16 +00:00
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style.css">
<link rel="alternate" title="Main RSS Feed" type="application/rss+xml" href="/rss.xml">
<link rel="icon" href="/assets/logo.svg">
<title>{{ page.title }}</title>
</head>
<body>
{% include "navigation.liquid" %}
<div class="section">
<div class="inner-section">
{{ page.content }}
</div>
</div>
{% include "footer.liquid" %}
</body>
</html>