-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrid.component.html
More file actions
32 lines (22 loc) · 851 Bytes
/
Copy pathgrid.component.html
File metadata and controls
32 lines (22 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<div class="site-grid site-container">
<section class="navbar-container">
<app-navbar></app-navbar>
</section>
<header class="idetity-container grid-area-common">
YOUR PAGE NAME
</header>
<section class="call-to-action-container grid-area-common">
CALL TO ACTION
</section>
<section class="page-content-container">
<section class="page-content-main grid-area-common">
<router-outlet/>
</section>
<section class="sidebar-container grid-area-common">
SIDE BAR
</section>
</section>
<footer class="footer-container grid-area-common bg-body-secondary">
FOOTER HERE
</footer>
</div>