]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blame - footer.php
Move user functionality fully into the base
[irc/unrealircd/unrealircd-webpanel.git] / footer.php
CommitLineData
d72d1923 1<footer class="text-center bg-dark text-white fixed-bottom" style="background-color: #f1f1f1;">
809f7483
VP
2 <!-- Grid container -->
3 <div class="container">
4 <!-- Section: Social media -->
d72d1923
VP
5
6 <?php $arr = []; Hook::run(HOOKTYPE_PRE_FOOTER, $arr); ?>
7
809f7483 8 <section class="mt-1">
d72d1923 9 © 1999-<?php echo date('Y'); ?> UnrealIRCd
809f7483
VP
10
11 <!-- Twitter -->
12 <a
13 class="btn btn-link btn-floating btn-lg text-white"
14 href="https://twitter.com/Unreal_IRCd"
15 role="button"
16 data-mdb-ripple-color="dark"
17 ><i class="fab fa-twitter"></i
18 ></a>
19 <!-- Github -->
20 <a
21 class="btn btn-link btn-floating btn-lg text-white"
22 href="https://github.com/unrealircd/unrealircd-webpanel"
23 role="button"
24 data-mdb-ripple-color="dark"
25 ><i class="fab fa-github"></i
26 ></a>
27 <!-- UnrealIRCd -->
28 <a
29 href="https://unrealircd.org"
30 role="button"
31 data-mdb-ripple-color="dark"
32 ><img class="btn btn-link btn-floating btn-xs text-white" src="<?php echo BASE_URL; ?>img/favicon.ico" width="25" height="25"></i
33 ></a>
d72d1923
VP
34
35 <?php $arr = []; Hook::run(HOOKTYPE_FOOTER, $arr); ?>
809f7483
VP
36 </section>
37
d72d1923 38
809f7483 39</footer>
e98b5a51
BM
40</body>
41</html>
ce9cf366
VP
42</div>
43</div>