Files
ScoreSpot/ProjectSourceCode/src/views/layouts/main.hbs

21 lines
404 B
Handlebars
Raw Normal View History

<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<!-- Add your head content here -->
{{> head}}
</head>
<body>
<!-- Render the scoreboard header on every page -->
{{> scoreboard-header/scoreboard-header}}
<!-- Add your navigation -->
{{> nav}}
<!-- Render the main content of each page -->
{{{body}}}
<!-- Add your footer -->
{{> footer}}
</body>
</html>
s