mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 04:16:37 -04:00
28 lines
888 B
HTML
28 lines
888 B
HTML
<html {{htmlAttributes}}>
|
|
<head>
|
|
{{{head}}}
|
|
{{{dynamicHead}}}
|
|
{{#each css}} <link rel="stylesheet" type="text/css" class="__meteor-css__" href="{{../bundledJsCssUrlRewriteHook url}}">{{/each}}
|
|
</head>
|
|
<body>
|
|
{{{body}}}
|
|
{{{dynamicBody}}}
|
|
{{#if inlineScriptsAllowed}}
|
|
<script type='text/javascript'>__meteor_runtime_config__ = JSON.parse(decodeURIComponent({{meteorRuntimeConfig}}));</script>
|
|
{{else}}
|
|
<script type='text/javascript' src='{{rootUrlPathPrefix}}/meteor_runtime_config.js'></script>
|
|
{{/if}}
|
|
{{#each js}} <script type="text/javascript" src="{{../bundledJsCssUrlRewriteHook url}}"></script>
|
|
{{/each}}
|
|
{{#each additionalStaticJs}}
|
|
{{#if ../inlineScriptsAllowed}}
|
|
<script type='text/javascript'>
|
|
{{contents}}
|
|
</script>
|
|
{{else}}
|
|
<script type='text/javascript'
|
|
src='{{rootUrlPathPrefix}}{{pathname}}'></script>
|
|
{{/if}}
|
|
{{/each}}
|
|
</body>
|
|
</html>
|