Files
Athou_commafeed/src/main/java/com/commafeed/frontend/pages/HomePage.html

35 lines
961 B
HTML
Raw Normal View History

2013-03-21 16:22:58 +01:00
<!DOCTYPE html>
<html xmlns:wicket="http://wicket.apache.org">
2013-03-21 18:40:09 +01:00
<head>
2013-03-27 12:13:56 +01:00
<title>CommaFeed</title>
2013-03-21 18:40:09 +01:00
</head>
2013-03-21 16:22:58 +01:00
<body>
2013-03-27 13:59:57 +01:00
<div ng-app="commafeed" id="main" class="main">
<div class="container-fluid">
<div class="row-fluid">
2013-03-29 10:44:41 +01:00
<div class="span2 sidebar-nav-fixed">
<subscribe></subscribe>
<div class="css-treeview" ng-controller="CategoryTreeCtrl">
<ul>
<category node="SubscriptionService.subscriptions" feed-click="feedClicked(id)"
category-click="categoryClicked(id)" selected-type="selectedType"
selected-id="selectedId"
format-category-name="formatCategoryName(category)"
format-feed-name="formatFeedName(feed)"> </category>
</ul>
</div>
</div>
<div class="span10">
2013-03-29 10:44:41 +01:00
<div class="toolbar">
<toolbar></toolbar>
</div>
<div class="entryList">
<ng:view></ng:view>
</div>
</div>
</div>
</div>
2013-03-21 18:40:09 +01:00
</div>
2013-03-21 16:22:58 +01:00
</body>
</html>