1
0

index.html 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <!--
  4. Licensed to the Apache Software Foundation (ASF) under one or more
  5. contributor license agreements. See the NOTICE file distributed with
  6. this work for additional information regarding copyright ownership.
  7. The ASF licenses this file to You under the Apache License, Version 2.0
  8. (the "License"); you may not use this file except in compliance with
  9. the License. You may obtain a copy of the License at
  10. http://www.apache.org/licenses/LICENSE-2.0
  11. Unless required by applicable law or agreed to in writing, software
  12. distributed under the License is distributed on an "AS IS" BASIS,
  13. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. See the License for the specific language governing permissions and
  15. limitations under the License.
  16. -->
  17. <html lang="en">
  18. <head>
  19. <meta charset="utf-8">
  20. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  21. <meta name="viewport" content="width=device-width, initial-scale=1">
  22. <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  23. <meta name="description" content="HDFS Storage Container Manager">
  24. <title>HDFS Storage Container Manager</title>
  25. <link href="static/bootstrap-3.4.1/css/bootstrap.min.css" rel="stylesheet">
  26. <link href="static/hadoop.css" rel="stylesheet">
  27. <link href="static/nvd3-1.8.5.min.css" rel="stylesheet">
  28. <link href="static/ozone.css" rel="stylesheet">
  29. </head>
  30. <body ng-app="scm">
  31. <header class="navbar navbar-inverse navbar-fixed-top bs-docs-nav">
  32. <div class="container-fluid">
  33. <div class="navbar-header">
  34. <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"
  35. aria-expanded="false" aria-controls="navbar">
  36. <span class="sr-only">Toggle navigation</span>
  37. <span class="icon-bar"></span>
  38. <span class="icon-bar"></span>
  39. <span class="icon-bar"></span>
  40. </button>
  41. <a class="navbar-brand" href="#">HDFS SCM</a>
  42. </div>
  43. <navmenu
  44. metrics="{ 'Rpc metrics' : '#!/metrics/rpc'}"></navmenu>
  45. </div>
  46. </header>
  47. <div class="container-fluid" style="margin: 12pt">
  48. <ng-view></ng-view>
  49. </div><!-- /.container -->
  50. <script src="static/jquery-3.4.1.min.js"></script>
  51. <script src="static/angular-1.6.4.min.js"></script>
  52. <script src="static/angular-route-1.6.4.min.js"></script>
  53. <script src="static/d3-3.5.17.min.js"></script>
  54. <script src="static/nvd3-1.8.5.min.js"></script>
  55. <script src="static/angular-nvd3-1.0.9.min.js"></script>
  56. <script src="static/ozone.js"></script>
  57. <script src="scm.js"></script>
  58. <script src="static/bootstrap-3.4.1/js/bootstrap.min.js"></script>
  59. </body>
  60. </html>