Advertisement
Guest User

source of running webpage

a guest
Jan 10th, 2016
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.56 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <base href="/">
  4.         <!--Without this tag, the browser may not be be able to load resources (images, css, scripts) when "deep linking" into the app. Bad things could happen when someone pastes an application link into the browser's address bar or clicks such a link in an email link. -->
  5.         <title>Factory</title>
  6.         <link type="text/css" rel="stylesheet" href="/css/styles.css">
  7.         <script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
  8.         <style type="text/css"></style>
  9.         <script src="node_modules/systemjs/dist/system.src.js"></script>
  10.         <script src="node_modules/rxjs/bundles/Rx.js"></script>
  11.         <script src="node_modules/angular2/bundles/angular2.dev.js"></script>
  12.         <script src="node_modules/angular2/bundles/router.dev.js"></script>
  13.         <script src="/node_modules/angular2/bundles/http.dev.js"></script>
  14.         <!--<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">-->
  15.         <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>-->
  16.         <!--<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>-->
  17.         <!--<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" />-->
  18.         <!-- stackoverflow suggested settings -->
  19.         <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
  20.         <script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
  21.         <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
  22.         <script>
  23.             System.config({
  24.                 packages: {
  25.                     app: {
  26.                         format: 'register',
  27.                         defaultExtension: 'js'
  28.                     }
  29.                 }
  30.             });
  31.             System.import('app/boot')
  32.                     .then(null, console.error.bind(console));
  33.         </script>
  34.     </head>
  35.     <body>
  36.         <script type="text/javascript" id="__bs_script__">//<![CDATA[
  37.             document.write("<script async src='/browser-sync/browser-sync-client.2.10.1.js'><\/script>".replace("HOST", location.hostname));
  38.             //]]>
  39.         </script><script async="" src="/browser-sync/browser-sync-client.2.10.1.js"></script>
  40.         <my-app>
  41.             <nav class="navbar navbar-default">
  42.                 <div class="container-fluid">
  43.                     <div class="navbar-header">
  44.                         <a class="navbar-brand">Factory Management Tool</a>
  45.                     </div>
  46.                     <ul class="nav navbar-nav">
  47.                         <li><a href="/hall-list">Hallen</a></li>
  48.                         <li><a href="/hall-groundplan">PlatteGrond</a></li>
  49.                     </ul>
  50.                 </div>
  51.             </nav>
  52.             <router-outlet></router-outlet>
  53.             <undefined>
  54.                 <!--template bindings={}-->
  55.                 <div class="container">
  56.                     <h2>Detail van hal <small>Hall A1</small></h2>
  57.                     <a data-toggle="tooltip" href="#" title="Hooray!">Hover over me</a>
  58.                     <div class="container">
  59.                         <div class="hall-box-single">
  60.                             <div class="hall-box" style="width: 200px; height: 160px;">
  61.                                 <div class="image-container">
  62.                                     <!--template bindings={}-->
  63.                                     <div>
  64.                                         <a data-toggle="tooltip" title="Popover title">
  65.                                         <img src="images/lamp.png" style="left: 10px; top: 10px;">
  66.                                         </a>
  67.                                     </div>
  68.                                     <div>
  69.                                         <a data-toggle="tooltip" title="Popover title">
  70.                                         <img src="images/lamp.png" style="left: 50px; top: 10px;">
  71.                                         </a>
  72.                                     </div>
  73.                                     <div>
  74.                                         <a data-toggle="tooltip" title="Popover title">
  75.                                         <img src="images/band.png" style="left: 50px; top: 50px;">
  76.                                         </a>
  77.                                     </div>
  78.                                 </div>
  79.                             </div>
  80.                         </div>
  81.                     </div>
  82.                 </div>
  83.             </undefined>
  84.         </my-app>
  85.     </body>
  86. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement