diff options
Diffstat (limited to 'utils/test/reporting/pages/app/index.html')
-rw-r--r-- | utils/test/reporting/pages/app/index.html | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/utils/test/reporting/pages/app/index.html b/utils/test/reporting/pages/app/index.html new file mode 100644 index 000000000..7673a4cc2 --- /dev/null +++ b/utils/test/reporting/pages/app/index.html @@ -0,0 +1,75 @@ +<!doctype html> +<html ng-app="opnfvApp"> + <head> + <meta charset="utf-8"> + <title>OPNFV-DASHBOARD EXAMPLE</title> + <meta name="description" content=""> + <meta name="viewport" content="width=device-width,width=device-width,initial-scale=1"> + <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> + <!-- build:css(.) styles/vendor.css --> + <!-- bower:css --> + <link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css" /> + <link rel="stylesheet" href="bower_components/metisMenu/dist/metisMenu.css" /> + <link rel="stylesheet" href="bower_components/chosen/chosen.css" /> + <link rel="stylesheet" href="bower_components/selectize/dist/css/selectize.css" /> + <link rel="stylesheet" href="bower_components/components-font-awesome/css/font-awesome.css" /> + <!-- endbower --> + <!-- endbuild --> + <!-- build:css(.tmp) styles/style.css --> + <!--<link rel="stylesheet" href="styles/main.css">--> + <link rel="stylesheet" href="styles/animate.css"> + <link rel="stylesheet" href="styles/style.css"> + <link rel="stylesheet" href="styles/custome.css"> + + <!-- endbuild --> + </head> + <body class="{{$state.current.data.specialClass}}" id="page-top"> + <!--[if lte IE 8]> + <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> + <![endif]--> + + <!-- Add your site or application content here --> + <div ui-view></div> + <!-- Google Analytics: change UA-XXXXX-X to be your site's ID --> + <!--<script> + !function(A,n,g,u,l,a,r){A.GoogleAnalyticsObject=l,A[l]=A[l]||function(){ + (A[l].q=A[l].q||[]).push(arguments)},A[l].l=+new Date,a=n.createElement(g), + r=n.getElementsByTagName(g)[0],a.src=u,r.parentNode.insertBefore(a,r) + }(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); + + ga('create', 'UA-XXXXX-X'); + ga('send', 'pageview'); + </script>--> + + <!-- build:js(.) scripts/vendor.js --> + <!-- bower:js --> + <script src="bower_components/jquery/dist/jquery.js"></script> + <script src="bower_components/angular/angular.js"></script> + <script src="bower_components/bootstrap/dist/js/bootstrap.js"></script> + <script src="bower_components/angular-animate/angular-animate.js"></script> + <script src="bower_components/jquery-slimscroll/jquery.slimscroll.js"></script> + <script src="bower_components/jquery-slimscroll/jquery.slimscroll.min.js"></script> + <script src="bower_components/metisMenu/dist/metisMenu.js"></script> + <script src="bower_components/chosen/chosen.jquery.js"></script> + <script src="bower_components/oclazyload/dist/ocLazyLoad.js"></script> + <script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script> + <script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script> + <script src="bower_components/angular-resource/angular-resource.js"></script> + <script src="bower_components/sifter/sifter.js"></script> + <script src="bower_components/microplugin/src/microplugin.js"></script> + <script src="bower_components/selectize/dist/js/selectize.js"></script> + <script src="bower_components/angular-selectize2/dist/angular-selectize.js"></script> + <!-- endbower --> + <!-- endbuild --> + + <!-- build:js({.tmp,app}) scripts/scripts.js --> + <script src="scripts/app.js"></script> + <!--<script src="scripts/controllers/main.js"></script>--> + <script src="scripts/config.router.js"></script> + <script src="scripts/controllers/table.controller.js"></script> + <script src="scripts/config.js"></script> + <script src="scripts/directives/mydirective.js"></script> + <script src="scripts/factory/table.factory.js"></script> + <!-- endbuild --> +</body> +</html> |