18 lines
417 B
Plaintext
18 lines
417 B
Plaintext
{% include "partials/header.njk" %}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>SSR Rendering in Nunjucks proof of concept</h1>
|
|
</header>
|
|
{% block body %}
|
|
{{ content | safe }}
|
|
{% endblock %}
|
|
{% block footer %}
|
|
<footer class="sitefooter">
|
|
{% include 'partials/footer.njk' %}
|
|
</footer>
|
|
<script async="true" src="/assets/{{manifest.main.js}}"></script>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|