Advertisement
Guest User

Untitled

a guest
Dec 11th, 2015
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.40 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html lang="en">
  4.  
  5.  
  6.     <head>
  7.     <title></title>
  8.     <meta charset="utf-8" />
  9.     <meta name="description" content="Augmented Traffic Control Demo UI" />
  10.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  11.     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  12.  
  13.     <!-- React.js -->
  14.     <script src="//cdnjs.cloudflare.com/ajax/libs/es5-shim/2.2.0/es5-shim.min.js"></script>
  15.     <script src="//cdnjs.cloudflare.com/ajax/libs/es5-shim/2.2.0/es5-sham.min.js"></script>
  16.     <script src="/static/vendor/react/react-0.13.3.js"></script>
  17.     <script src="/static/vendor/react/JSXTransformer-0.13.3.js"></script>
  18.     <script type="text/jsx" src="/static/js/atc-api.js"></script>
  19.     <script type="text/jsx" src="/static/js/atc-profile-storage.js"></script>
  20.     <script type="text/jsx" src="/static/js/atc-utils.js"></script>
  21.     <script type="text/jsx" src="/static/js/atc-auth.js"></script>
  22.     <script type="text/jsx" src="/static/js/atc-profiles.js"></script>
  23.     <script type="text/jsx" src="/static/js/atc-shaping.js"></script>
  24.     <script type="text/jsx" src="/static/js/atc.js"></script>
  25.     <link rel="stylesheet" href="/static/css/atc.css" />
  26.     <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  27.     <script src="/static/static_jquery/js/jquery.min.js"></script>
  28.  
  29.     <!-- Bootstrap CSS -->
  30.     &lt;link rel=&quot;stylesheet&quot; href=&quot;/static/bootstrap/themes/default/css/bootstrap.min.css&quot; type=&quot;text/css&quot;&gt;
  31.     <!-- Bootstrap JS -->
  32.     &lt;script type=&quot;text/javascript&quot; src=&quot;/static/bootstrap/js/bootstrap.min.js&quot;&gt;&lt;/script&gt;
  33.     <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  34.     <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  35.     <!--[if lt IE 9]>
  36.        <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  37.        <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  38.    <![endif]-->
  39.     </head>
  40.     <body>
  41.         <div class="container">
  42.         <div class="starter-template">
  43.         <h1>Augmented Traffic Control Demo UI</h1>
  44.        
  45. <div id="atc_demo_ui">
  46.  
  47.  
  48. </div>
  49.  
  50. <script type="text/jsx">
  51.     React.render(
  52.         <Atc endpoint="/api/v1/"/>,
  53.         document.getElementById('atc_demo_ui')
  54. );
  55. </script>
  56.  
  57.         </div>
  58.         </div>
  59.     </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement