Fix layouts path.

This commit is contained in:
2022-04-22 21:21:59 +03:00
parent 968d4e79f6
commit 5ae0f701c3
3 changed files with 23 additions and 11 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
<html lang="en">
{{> layouts/partials/head }}
{{> (include_partial "layouts/partials/head") }}
<body>
{{> layouts/partials/toolbar }}
{{> (include_partial "layouts/partials/toolbar") }}
<main>
<div class="container">
@@ -12,7 +12,7 @@
</div>
</main>
{{> layouts/partials/scripts }}
{{> (include_partial "layouts/partials/scripts") }}
</body>
</html>
+3 -3
View File
@@ -1,16 +1,16 @@
<html lang="en">
{{> layouts/partials/head }}
{{> (include_partial "layouts/partials/head") }}
<body>
{{> layouts/partials/toolbar }}
{{> (include_partial "layouts/partials/toolbar") }}
<main>
{{> src/template }}
</main>
{{> layouts/partials/scripts }}
{{> (include_partial "layouts/partials/scripts") }}
</body>
</html>