Project

General

Profile

1
<div class="p-grid p-nogutter">
2

    
3
  <app-left-panel class="hidden-left-panel"></app-left-panel>
4

    
5
  <div class="p-col main-content">
6
    <h1>{{'ADMINISTRATION' | translate}}</h1>
7

    
8
    <div class="p-mb-5 hidden-horizontal-menu">
9
      <app-horizontal-menu></app-horizontal-menu>
10
    </div>
11

    
12
    <ng-template ngFor let-section [ngForOf]="adminSections">
13
      <h3 class="sub-title" id="{{section.title}}">{{section.title}}</h3>
14
      <div class="sub-content">
15
        <div class="p-grid">
16
          <ng-template ngFor let-subSection [ngForOf]="section.subSections">
17
            <div class="p-col-12 p-sm-6 p-xl-3">
18
              <app-card [data]="subSection"></app-card>
19
            </div>
20
          </ng-template>
21
        </div>
22
      </div>
23
    </ng-template>
24
  </div>
25

    
26
</div>
(1-1/4)