52 lines
2.1 KiB
HTML
52 lines
2.1 KiB
HTML
<footer>
|
|
<div class="social text-center py-3" style="background: #990000">
|
|
<!-- <h2 class="mb-4">Follow us on social media</h2>-->
|
|
<!-- <div class="d-flex justify-content-around mx-auto transparent-link" style="max-width: 300px">-->
|
|
<!-- <a href="https://discord.gg/wW458KYR79" target="_blank">-->
|
|
<!-- <i class="fa-brands fa-discord fa-2xl"></i>-->
|
|
<!-- </a>-->
|
|
<!-- <a href="https://facebook.com" target="_blank" aria-label="Facebook">-->
|
|
<!-- <i class="fa-brands fa-facebook fa-2xl"></i>-->
|
|
<!-- </a>-->
|
|
<!-- <a href="https://instagram.com" target="_blank" aria-label="Instagram">-->
|
|
<!-- <i class="fa-brands fa-instagram fa-2xl"></i>-->
|
|
<!-- </a>-->
|
|
<!-- <a href="https://tiktok.com" target="_blank" aria-label="TikTok">-->
|
|
<!-- <i class="fa-brands fa-tiktok fa-2xl"></i>-->
|
|
<!-- </a>-->
|
|
<!-- <a href="https://youtube.com" target="_blank" aria-label="Youtube">-->
|
|
<!-- <i class="fa-brands fa-youtube fa-2xl"></i>-->
|
|
<!-- </a>-->
|
|
<!-- </div>-->
|
|
<!-- <h3 class="mt-4 mb-0">so we can invade your feed ⚔️</h3>-->
|
|
</div>
|
|
<div class="bg-dark text-center text-sm-start">
|
|
<div class="d-flex flex-column flex-sm-row flex-wrap justify-content-center container p-3 pb-0">
|
|
<div *ngFor="let group of navigation" class="mx-5">
|
|
<h2 class="sitemap-header">{{group.label}}</h2>
|
|
<ul>
|
|
<ng-container *ngFor="let section of group.children">
|
|
<li *ngFor="let item of section">
|
|
<a [routerLink]="item.url" [fragment]="item.fragment">{{item.label}}</a>
|
|
</li>
|
|
</ng-container>
|
|
</ul>
|
|
</div>
|
|
<div class="mx-5">
|
|
<h2 class="sitemap-header">Contact</h2>
|
|
<ul>
|
|
<li class="font-weight-strong">Robert Sacco</li>
|
|
<li>Legio XXX President</li>
|
|
<li>Email: <a href="mailto:primuspiluslxxx@gmail.com" target="_blank">primuspiluslxxx@gmail.com</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="py-3 text-center">
|
|
<p class="copyright m-0">
|
|
Copyright © Legio XXX 2024 | All Rights Reserved<br>
|
|
Created by <a href="https://zakscode.com" target="_blank">Zak Timson</a> | Built with <a href="https://momentum.zakscode.com" target="_blank">Momentum</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|