Pages are now grouped per group they appear in on in the header (where possible) Utilities used by multiple pages in the project are grouped in folders such as services/pipes/etc
23 lines
769 B
HTML
23 lines
769 B
HTML
<ng-container>
|
|
<app-header [current_page]="'map'"
|
|
[background_image]="'public/img/backgrounds/map.jpg'"
|
|
[overlay_gradient]=0.65>
|
|
<div class="title" header-content>
|
|
<h1>Dynamic Server Maps</h1>
|
|
<h2>Which server would you like to see?</h2>
|
|
<div>
|
|
<a href="https://gmap.alttd.com">
|
|
<div style="background-color: #F547B2;" class="button-outer map-button">
|
|
<span class="button-inner">Grove</span>
|
|
</div>
|
|
</a>
|
|
<a href="https://cmap.alttd.com">
|
|
<div style="background-color: #C46213;" class="button-outer map-button">
|
|
<span class="button-inner">Creative</span>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</app-header>
|
|
</ng-container>
|