+ Updated the package to support HandleBars

This commit is contained in:
2021-05-30 00:31:59 +03:00
parent 69adfdabc0
commit f9c7b13b0d
14 changed files with 682 additions and 6 deletions

9
views/layouts/main.hbs Normal file
View File

@@ -0,0 +1,9 @@
{{> header}}
{{{body}}}
<script>
console.log(`Layouts are awesome for when you need to do something "globally", maybe have a layout for articles, one for information pages and one more for other stuff such as a different theme!`);
console.log(`These messages will show in all pages that are using the main layout!`);
</script>
{{> footer}}