1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 18:19:25 +00:00
Files
stratos/views/layouts/main.hbs
2022-04-22 03:07:54 +00:00

13 lines
228 B
Handlebars

<!DOCTYPE html>
<html lang='en'>
{{> head title=title }}
<body>
<script>
const touchEvent = 'ontouchstart' in window ? 'touchstart' : 'click';
</script>
{{> mainNav }}
{{{ body }}}
{{> scripts }}
</body>
</html>