mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
17 lines
359 B
HTML
17 lines
359 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html>
|
|
<head>
|
|
{{#each stylesheets}} <link rel="stylesheet" href="{{this}}">
|
|
{{/each}}
|
|
|
|
{{{head_extra}}}
|
|
|
|
{{#each scripts}} <script type="text/javascript" src="{{this}}"></script>
|
|
{{/each}}
|
|
</head>
|
|
<body>
|
|
{{{body_extra}}}
|
|
</body>
|
|
</html>
|