ONOS-1935 - CORD-GUI -- Nav bar updated, skeleton bundle view created.

Change-Id: Ife6e6775274a35f2941208967665d2ac91f686b7
diff --git a/apps/demo/cord-gui/src/main/webapp/app/view/bundle/bundle.html b/apps/demo/cord-gui/src/main/webapp/app/view/bundle/bundle.html
index b497f30..d8574b5 100644
--- a/apps/demo/cord-gui/src/main/webapp/app/view/bundle/bundle.html
+++ b/apps/demo/cord-gui/src/main/webapp/app/view/bundle/bundle.html
@@ -1,5 +1,20 @@
 <!-- Bundle page partial html -->
-<div class="container">
+<div id="bundle" class="container">
     <nav></nav>
-    <h2>Subscriber Bundles</h2>
+    <div class="main-left">
+        <h3>You are subscribed to the</h3>
+        <h2>{{name}}</h2>
+        <table>
+            <tr ng-repeat="func in funcs">
+                <td class="icon">icon of function</td>
+                <td>{{func.name}}</td>
+                <td class="desc">{{func.desc}}</td>
+                <td>{{func.params.level && "Level: " + func.params.level}}</td>
+            </tr>
+        </table>
+    </div>
+    <div class="main-right">
+        <h2>Available Bundles</h2>
+        <div bundle-available></div>
+    </div>
 </div>
\ No newline at end of file