Pankaj Berde | c4ae4b8 | 2013-01-12 09:56:47 -0800 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <!-- template from Christophe Coenraets --> |
| 3 | <!-- |
| 4 | Copyright 2012 IBM |
| 5 | |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | --> |
| 18 | <html lang="en"> |
| 19 | <head> |
| 20 | <meta charset="utf-8"> |
| 21 | <title>Floodlight</title> |
| 22 | <meta name="description" content=""> |
| 23 | <meta name="author" content=""> |
| 24 | |
| 25 | <!-- Le HTML5 shim, for IE6-8 support of HTML elements --> |
| 26 | <!--[if lt IE 9]> |
| 27 | <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> |
| 28 | <!-- Place this tag in your head or just before your close body tag --> |
| 29 | <![endif]--> |
| 30 | |
| 31 | <!-- Le styles --> |
| 32 | <style> |
| 33 | body { |
| 34 | padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */ |
| 35 | } |
| 36 | </style> |
| 37 | <link href="css/bootstrap.css" rel="stylesheet"> |
| 38 | <link href="css/styles.css" rel="stylesheet"> |
| 39 | |
| 40 | <!-- Le fav and touch icons --> |
| 41 | <!-- TODO create some icons |
| 42 | <link rel="shortcut icon" href="/img/favicon.ico"> |
| 43 | <link rel="apple-touch-icon" href="/img/apple-touch-icon.png"> |
| 44 | <link rel="apple-touch-icon" sizes="72x72" href="/img/apple-touch-icon-72x72.png"> |
| 45 | <link rel="apple-touch-icon" sizes="114x114" href="/img/apple-touch-icon-114x114.png"> |
| 46 | --> |
| 47 | </head> |
| 48 | |
| 49 | <body> |
| 50 | |
| 51 | <div class="header"></div> |
| 52 | |
| 53 | <div class="container"> |
| 54 | |
| 55 | <div id="content"></div> |
| 56 | |
| 57 | <hr> |
| 58 | <footer class="footer"> |
| 59 | <p><a href="http://floodlight.openflowhub.org/">Floodlight </a> © <a href="http://www.bigswitch.com/">Big Switch Networks</a>, <a href="http://www.research.ibm.com/arl/">IBM</a>, et. al. |
| 60 | Powered by <a href="http://documentcloud.github.com/backbone/">Backbone.js</a>, <a href="http://twitter.github.com/bootstrap/">Bootstrap</a>, <a href="http://jquery.com/">jQuery</a>, <a href="http://mbostock.github.com/d3/">D3.js</a>, etc.</p> |
| 61 | </footer> |
| 62 | |
| 63 | </div> <!-- /container --> |
| 64 | |
| 65 | <script src="lib/jquery.min.js"></script> |
| 66 | <script src="lib/underscore-min.js"></script> |
| 67 | <script src="lib/backbone-min.js"></script> |
| 68 | <script src="lib/d3.v2.min.js"></script> |
| 69 | |
| 70 | <script src="lib/bootstrap-dropdown.js"></script> |
| 71 | <script src="lib/bootstrap-alert.js"></script> |
| 72 | |
| 73 | <script src="js/utils.js"></script> |
| 74 | |
| 75 | <script src="js/models/hostmodel.js"></script> |
| 76 | <script src="js/models/topologymodel.js"></script> |
| 77 | <script src="js/models/statusmodel.js"></script> |
| 78 | <script src="js/models/switchmodel.js"></script> |
| 79 | <script src="js/models/portmodel.js"></script> |
| 80 | <script src="js/models/flowmodel.js"></script> |
| 81 | |
| 82 | <script src="js/views/header.js"></script> |
| 83 | <script src="js/views/home.js"></script> |
| 84 | <script src="js/views/status.js"></script> |
| 85 | <script src="js/views/host.js"></script> |
| 86 | <script src="js/views/switch.js"></script> |
| 87 | <script src="js/views/topology.js"></script> |
| 88 | <script src="js/views/port.js"></script> |
| 89 | <script src="js/views/flow.js"></script> |
| 90 | |
| 91 | <script src="js/main.js"></script> |
| 92 | |
| 93 | </body> |
| 94 | </html> |