mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
20 lines
339 B
HTML
20 lines
339 B
HTML
<!DOCTYPE html>
|
|
<html##HTML_ATTRIBUTES##>
|
|
<head>
|
|
{{#each stylesheets}} <link rel="stylesheet" href="{{this}}">
|
|
{{/each}}
|
|
|
|
<script type="text/javascript">
|
|
// ##RUNTIME_CONFIG##
|
|
</script>
|
|
|
|
{{#each scripts}} <script type="text/javascript" src="{{this}}"></script>
|
|
{{/each}}
|
|
|
|
{{{head_extra}}}
|
|
</head>
|
|
<body>
|
|
{{{body_extra}}}
|
|
</body>
|
|
</html>
|