rittenhop-ghost/versions/5.94.2/node_modules/express-hbs/example/views/layout/html-struct.hbs

22 lines
467 B
Handlebars
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title>{{title}}</title>
<link type="text/css" rel="stylesheet" href="/css/style.css"/>
{{{block "pageStyles"}}}
</head>
<body>
<!-- Placeholder for page content. -->
{{{body}}}
<!-- Partials are common snippets to be used 1 or more pages. -->
{{> scripts}}
{{> other}}
<!-- A block is placeholder for pieces of content defined in a page. -->
{{{block 'pageScripts'}}}
</body>
</html>