This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
FoodLoop-Web/pages/home/home.html
2017-03-10 13:26:13 +00:00

13 lines
536 B
HTML

<!-- ideally, this page would be the tempalte for all user types, admin -->
<!-- user, trader etc. this home page will defines the common html structure-->
<!-- among differnet user page -->
<!-- use ui-view to display header,sidebar and main content of differnet types -->
<!-- this would the common layout, header, siderbar, main -->
<!-- the actual content and logic within will be managed by -->
<!-- seperate controller,css, html files -->
<div ui-view="header"></div>
<div ui-view="sidebar"></div>
<div ui-view="main"></div>