Blame view

app/views/common/content.html 644 Bytes
e4e496d13   Rishav   setup admin acufu...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <!-- Wrapper-->
  <div id="wrapper">
  
      <!-- Navigation -->
      <div ng-include="'views/common/navigation.html'"></div>
  
      <!-- Page wraper -->
      <!-- ng-class with current state name give you the ability to extended customization your view -->
      <div id="page-wrapper" class="gray-bg {{$state.current.name}}">
  
          <!-- Page wrapper -->
          <div ng-include="'views/common/topnavbar.html'"></div>
  
          <!-- Main view  -->
          <div ui-view></div>
  
          <!-- Footer -->
          <div ng-include="'views/common/footer.html'"></div>
  
      </div>
      <!-- End page wrapper-->
  
  </div>
  <!-- End wrapper-->