We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57f7c5b commit ecb2384Copy full SHA for ecb2384
_includes/default.html
@@ -17,11 +17,11 @@
17
{% endif %}
18
</head>
19
<body>
20
- {% include "partials/navbar.njk" %}
+ {% include "partials/navbar.html" %}
21
22
{{ content | safe }}
23
24
- {% include "partials/footer.njk" %}
+ {% include "partials/footer.html" %}
25
26
<script src="/static/js/alpine.js"></script>
27
index.html
@@ -18,5 +18,5 @@ <h1>
<code class="bg-gray-100 text-blue-800 p-1">/index.njk</code>
</p>
- {% include "_includes/partials/content.njk" %}
+ {% include "_includes/partials/content.html" %}
</div>
tailwind.config.js
@@ -1,7 +1,7 @@
1
module.exports = {
2
purge: {
3
mode: "all",
4
- content: ["./**/*.njk"],
+ content: ["./**/*.html"],
5
options: {
6
whitelist: [],
7
},
0 commit comments