Updates
This commit is contained in:
51
src/app/components/footer/footer.component.html
Normal file
51
src/app/components/footer/footer.component.html
Normal file
@ -0,0 +1,51 @@
|
||||
<footer>
|
||||
<div class="p-2" style="background: #333">
|
||||
<div class="mx-auto d-flex justify-content-around" style="max-width: 800px">
|
||||
<div>
|
||||
<h2 class="sitemap-header">Home</h2>
|
||||
<ul class="m-0">
|
||||
<li><a routerLink="/">About</a></li>
|
||||
<li><a routerLink="/">Gallery</a></li>
|
||||
<li><a routerLink="/">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="sitemap-header">Learn</h2>
|
||||
<ul class="m-0">
|
||||
<li><a routerLink="/">Legio XXX</a></li>
|
||||
<li><a routerLink="/">Legion Structure</a></li>
|
||||
<li><a routerLink="/">Legion Camp</a></li>
|
||||
<li><a routerLink="/">Legion Headquarters</a></li>
|
||||
<li><a routerLink="/">Legionairy Equipment</a></li>
|
||||
<li><a routerLink="/">Legionairy Training</a></li>
|
||||
<li><a routerLink="/">Resources</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="sitemap-header">Events</h2>
|
||||
<ul class="m-0">
|
||||
<li><a routerLink="/">Castra Aestiva</a></li>
|
||||
<li><a routerLink="/">Castra Hiberna</a></li>
|
||||
<li><a routerLink="/">Callendar</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="sitemap-header">Members</h2>
|
||||
<ul class="m-0">
|
||||
<li><a routerLink="/">Getting Started</a></li>
|
||||
<li><a routerLink="/">Rules & Regulations</a></li>
|
||||
<li><a routerLink="/">Approved Vendors</a></li>
|
||||
<li><a routerLink="/">Kit Assembly</a></li>
|
||||
<li><a routerLink="/">Kit Maintinance</a></li>
|
||||
<li><a routerLink="/">Login/Register</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="py-2 text-center">
|
||||
<p class="m-0">
|
||||
Copyright © Legio XXX 2022 | All Rights Reserved<br>
|
||||
Created by <a href="https://zakscode.com" target="_blank">Zak Timson</a>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
16
src/app/components/footer/footer.component.scss
Normal file
16
src/app/components/footer/footer.component.scss
Normal file
@ -0,0 +1,16 @@
|
||||
.sitemap-header {
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: rgba(255, 255, 255, 0.55);
|
||||
}
|
||||
a:visited:hover, a:hover { color: rgba(255, 255, 255, 0.75); }
|
||||
a:visited { color: rgba(255, 255, 255, 0.55); }
|
||||
}
|
8
src/app/components/footer/footer.component.ts
Normal file
8
src/app/components/footer/footer.component.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import {Component} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'xxx-footer',
|
||||
templateUrl: './footer.component.html',
|
||||
styleUrls: ['./footer.component.scss']
|
||||
})
|
||||
export class FooterComponent { }
|
Reference in New Issue
Block a user