Skip to content

Commit e6ff698

Browse files
authored
Merge pull request #852 from ember-fastboot/fix-outputpaths
[test] Update custom output paths in index.html
2 parents 22d628b + 3887090 commit e6ff698

File tree

1 file changed

+25
-0
lines changed
  • packages/ember-cli-fastboot/test/fixtures/customized-outputpaths/app

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<title>Customized Output Paths</title>
7+
<meta name="description" content="">
8+
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
10+
{{content-for "head"}}
11+
12+
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/vendor.css">
13+
<link integrity="" rel="stylesheet" href="{{rootURL}}some-assets/pth/app.css">
14+
15+
{{content-for "head-footer"}}
16+
</head>
17+
<body>
18+
{{content-for "body"}}
19+
20+
<script src="{{rootURL}}some-assets/path/lib.js"></script>
21+
<script src="{{rootURL}}some-assets/path/app-file.js"></script>
22+
23+
{{content-for "body-footer"}}
24+
</body>
25+
</html>

0 commit comments

Comments
 (0)