layout id shell added to base layout
This commit is contained in:
parent
b1720fd521
commit
d889baf661
1 changed files with 9 additions and 6 deletions
|
|
@ -6,17 +6,20 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
{% include "partials/meta.njk" %}
|
{% include "partials/meta.njk" %}
|
||||||
|
<link rel="stylesheet" href="{{ '/assets/styles/main.css' | url }}">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!--[if lt IE 7]>
|
<!--[if lt IE 7]>
|
||||||
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
|
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<div id="main-container">
|
<div id="layout">
|
||||||
|
<div id="main-container" role="document">
|
||||||
{% include "partials/header.njk" %}
|
{% include "partials/header.njk" %}
|
||||||
<main>
|
<main>
|
||||||
{{ content | safe }}
|
{{ content | safe }}
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
{% include "partials/footer.njk" %}
|
{% include "partials/footer.njk" %}
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
Reference in a new issue