23 lines
No EOL
317 B
Text
23 lines
No EOL
317 B
Text
---
|
|
title: base
|
|
---
|
|
{% set css %} {% include "base.css" %} {% endset %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include "layouts/header.njk" %}
|
|
<style>{{ css | cssmin }}</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include "layouts/navbar.njk" %}
|
|
|
|
{{ content | safe }}
|
|
|
|
{% include "layouts/footer.njk" %}
|
|
|
|
</body>
|
|
|
|
</html> |