Initial commit
This commit is contained in:
20
src/templates/layout.nunjucks
Normal file
20
src/templates/layout.nunjucks
Normal file
@ -0,0 +1,20 @@
|
||||
<!DOCTYPE html>
|
||||
<html class="no-js {{settings.htmlClass}}" dir="{{settings.dir}}" lang="{{settings.lang}}">
|
||||
<head>
|
||||
{% include "partials/head/head-meta.nunjucks" %}
|
||||
{% include "partials/head/head-css.nunjucks" %}
|
||||
{% include "partials/head/head-fonts.nunjucks" %}
|
||||
{% include "partials/head/head-scripts.nunjucks" %}
|
||||
</head>
|
||||
<body>
|
||||
{% include "partials/header/header.nunjucks" %}
|
||||
|
||||
<div class="content">
|
||||
{% block content %} {% endblock %}
|
||||
</div>
|
||||
|
||||
{% include "partials/footer/footer.nunjucks" %}
|
||||
{% include "partials/foot/foot-scripts.nunjucks" %}
|
||||
{% block foot_scripts %} {% endblock %}
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user