ExpressTS_BoilerPlate/views/layouts/main.hbs

9 lines
349 B
Handlebars
Raw Normal View History

{{> 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}}