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