1
1
@using System .Web .Optimization
2
2
<!DOCTYPE html>
3
3
<html lang =" en" >
4
- <head >
5
4
6
- <!-- Common meta tags -- >
5
+ < head >
7
6
<meta charset =" utf-8" >
8
7
<meta http-equiv =" X-UA-Compatible" content =" IE=edge" >
9
8
<meta name =" viewport" content =" width=device-width, initial-scale=1" >
10
9
<meta name =" description" content =" " >
11
10
<meta name =" author" content =" " >
12
11
13
- <!-- favicon -->
14
12
<link rel =" shortcut icon" href =" ~/favicon.ico" >
15
13
16
- <!-- Site title -->
17
14
<title >MySpaProject</title >
18
15
19
- <!-- Style for jQueryUI -->
20
- <link href =" ~/Content/themes/base/all.css" rel =" stylesheet" />
21
-
22
- <!-- Style for Bootstrap -->
23
- <link href =" ~/Content/bootstrap-cosmo.min.css" rel =" stylesheet" >
24
-
25
- <!-- Styles for jQuery plug-ins -->
26
- <link href =" ~/Content/toastr.min.css" rel =" stylesheet" />
27
-
28
- <!-- Country flags -->
29
- <link href =" ~/Content/flags/famfamfam-flags.css" rel =" stylesheet" />
30
-
31
- <!-- Font awecome -->
32
- <link href =" ~/Content/font-awesome.min.css" rel =" stylesheet" />
33
-
34
- <!-- Common styles for this application -->
35
- <link href =" ~/App/Common/styles/main.css" rel =" stylesheet" />
16
+ @Styles.Render( "~/Bundles/App/vendor/css")
17
+ @Styles.Render( "~/Bundles/App/Main/css")
36
18
37
19
<script type =" text/javascript" >
38
20
// This is used to get the application's root path from javascript. It's useful if you're running application in a virtual directory under IIS.
39
- var abp = abp || {};
40
- abp .appPath = ' @ApplicationPath' ;
21
+ var abp = abp || {}; abp .appPath = ' @ApplicationPath' ;
41
22
</script >
42
23
43
24
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
44
25
<!-- [if lt IE 9]>
45
26
<script src="@Url.Content("~/Scripts/others/html5shiv.js")"></script>
46
27
<script src="@Url.Content("~/Scripts/others/respond.min.js")"></script>
47
28
<![endif]-->
29
+ @Scripts.Render( "~/Bundles/App/vendor/js")
48
30
49
- <!-- Application styles -->
50
- @Styles.Render( "~/Bundles/App/Main/css")
51
-
52
- <!-- Windows Phone 8 and Internet Explorer 10 FIX -->
53
- <script src =" ~/Abp/Framework/scripts/utils/ie10fix.js" ></script >
54
-
55
- <!-- Modernizr -->
56
- <script src =" ~/Scripts/modernizr-2.8.3.js" ></script >
57
-
58
- <!-- jQuery and plugins -->
59
- <script src =" ~/Scripts/json2.min.js" ></script >
60
- <script src =" ~/Scripts/jquery-2.1.1.min.js" ></script >
61
- <script src =" ~/Scripts/jquery-ui.min-1.11.1.js" ></script >
62
- <script src =" ~/Scripts/jquery.blockUI.min.js" ></script >
63
- <script src =" ~/Scripts/toastr.min.js" ></script >
64
- <script src =" ~/Scripts/others/spinjs/spin.js" ></script >
65
- <script src =" ~/Scripts/others/spinjs/jquery.spin.js" ></script >
66
-
67
- <!-- Twitter Bootstrap -->
68
- <script src =" ~/Scripts/bootstrap.min.js" ></script >
69
-
70
- <!-- Angular scripts -->
71
- <script src =" ~/Scripts/angular.min.js" ></script >
72
- <script src =" ~/Scripts/angular-animate.min.js" ></script >
73
- <script src =" ~/Scripts/angular-sanitize.min.js" ></script >
74
- <script src =" ~/Scripts/angular-ui-router.min.js" ></script >
75
- <script src =" ~/Scripts/angular-ui/ui-bootstrap.min.js" ></script >
76
- <script src =" ~/Scripts/angular-ui/ui-bootstrap-tpls.min.js" ></script >
77
- <script src =" ~/Scripts/angular-ui/ui-utils.min.js" ></script >
78
-
79
- <!-- Abp framework scripts -->
80
- <script src =" ~/Abp/Framework/scripts/abp.js" ></script >
81
- <script src =" ~/Abp/Framework/scripts/libs/abp.jquery.js" ></script >
82
- <script src =" ~/Abp/Framework/scripts/libs/abp.toastr.js" ></script >
83
- <script src =" ~/Abp/Framework/scripts/libs/abp.blockUI.js" ></script >
84
- <script src =" ~/Abp/Framework/scripts/libs/abp.spin.js" ></script >
85
- <script src =" ~/Abp/Framework/scripts/libs/angularjs/abp.ng.js" ></script >
86
-
87
- <!-- Dynamic script of ABP system (It's created on runtime) -->
31
+ <!-- Dynamic scripts of ABP system (They are created on runtime and can not be bundled) -->
88
32
<script src =" ~/api/AbpServiceProxies/GetAll?type=angular" ></script >
89
33
<script src =" ~/AbpLocalization/GetScripts" type =" text/javascript" ></script >
34
+ <script src =" ~/AbpAuthorization/GetScripts" type =" text/javascript" ></script >
90
35
<script src =" ~/AbpNavigation/GetScripts" type =" text/javascript" ></script >
91
36
92
- <!-- Application scripts -->
93
37
@Scripts.Render( "~/Bundles/App/Main/js")
94
-
95
38
</head >
96
39
97
40
<body >
106
49
</div >
107
50
</div >
108
51
</body >
52
+
109
53
</html >
0 commit comments