Files
ScoreSpot/public/views/layouts/main.hbs

20 lines
432 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 -->
{{> navigation-bar/scoreboard-header/scoreboard-header}}
<!-- Add your navigation -->
{{> navigation-bar/nav}}
<!-- Render the main content of each page -->
{{{body}}}
<!-- Add your footer -->
{{> footer}}
</body>
2024-04-04 00:51:03 -06:00
</html>