2022-07-26 20:51:59 +00:00
|
|
|
<?php
|
|
|
|
if (is_dir("assets/icons/")) {
|
|
|
|
$dir = "assets/icons/";
|
|
|
|
} else {
|
|
|
|
$dir = "../assets/icons/";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
2022-07-21 18:42:03 +00:00
|
|
|
<footer class="footer-root flex-left around">
|
2022-07-21 14:53:04 +00:00
|
|
|
<div class="footer-child center flex-down">
|
|
|
|
<h3>Contact me</h3>
|
2022-07-26 17:16:17 +00:00
|
|
|
<a class='link' href="https://t.me/Fluffy_Bean">
|
|
|
|
<img class='svg' src='<?php echo $dir; ?>telegram-logo.svg'>
|
|
|
|
Telegram</a>
|
|
|
|
<a class='link' href="https://twitter.com/fluffybeanUwU">
|
|
|
|
<img class='svg' src='<?php echo $dir; ?>twitter-logo.svg'>
|
|
|
|
Twitter</a>
|
|
|
|
<a class='link' href="https://github.com/Fluffy-Bean">
|
|
|
|
<img class='svg' src='<?php echo $dir; ?>github-logo.svg'>
|
|
|
|
GitHub</a>
|
2022-07-21 14:53:04 +00:00
|
|
|
</div>
|
2022-07-25 19:59:02 +00:00
|
|
|
<div class="footer-child center flex-down">
|
2022-07-21 14:53:04 +00:00
|
|
|
<h3>Information</h3>
|
2022-07-26 17:16:17 +00:00
|
|
|
<a class='link' href="https://superdupersecteteuploadtest.fluffybean.gay/info/about.php">
|
|
|
|
<img class='svg' src='<?php echo $dir; ?>scroll.svg'>
|
|
|
|
About</a>
|
2022-07-28 13:04:44 +00:00
|
|
|
<a href="https://github.com/Fluffy-Bean/image-gallery">
|
|
|
|
<img class='svg' src='<?php echo $dir; ?>github-logo.svg'>
|
|
|
|
Project Code</a>
|
|
|
|
<a href="https://github.com/Fluffy-Bean/image-gallery/blob/main/LICENSE.md">
|
|
|
|
<img class='svg' src='<?php echo $dir; ?>link.svg'>
|
|
|
|
Legal</a>
|
2022-07-25 19:59:02 +00:00
|
|
|
</div>
|
2022-07-21 14:53:04 +00:00
|
|
|
<div class="footer-child center flex-down">
|
2022-07-28 13:04:44 +00:00
|
|
|
<h3>Other Work</h3>
|
2022-07-26 17:16:17 +00:00
|
|
|
<a class='link' href="https://testing.fluffybean.gay">
|
|
|
|
<img class='svg' src='<?php echo $dir; ?>link.svg'>
|
|
|
|
Testing Page</a>
|
|
|
|
<a class='link' href="https://gay.fluffybean.gay">
|
|
|
|
<img class='svg' src='<?php echo $dir; ?>link.svg'>
|
|
|
|
My website!</a>
|
2022-07-21 14:53:04 +00:00
|
|
|
</div>
|
2022-07-21 18:42:03 +00:00
|
|
|
</footer>
|