13 lines
536 B
HTML
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>
|