Initial commit
This commit is contained in:
commit
613ada0063
17 changed files with 2287 additions and 0 deletions
17
src/_layouts/base.njk
Normal file
17
src/_layouts/base.njk
Normal file
|
@ -0,0 +1,17 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- charset/http-equiv/viewport -->
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="/assets/css/global.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{% include "partials/header.njk" %}
|
||||
<main id="main" class="flow">{{ content | safe }}</main>
|
||||
{% include "partials/footer.njk" %}
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue