mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-01 18:19:25 +00:00
13 lines
228 B
Handlebars
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>
|