mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
29 lines
888 B
HTML
29 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>
|