diff options
author | Thedro Neely <thedroneely@gmail.com> | 2022-02-19 20:29:18 -0500 |
---|---|---|
committer | Thedro Neely <thedroneely@gmail.com> | 2022-02-19 20:29:18 -0500 |
commit | 0ca13d03f3bca48f1f50119bbc6887f5c0ce43ed (patch) | |
tree | 9e7725d2d0b15b1d7ed0dfc3c331c0d04981f0a7 | |
parent | 7bf6cf037fc1eb4c13245f679c9454ceea263c52 (diff) | |
download | edwinmattiacci.com-0ca13d03f3bca48f1f50119bbc6887f5c0ce43ed.tar.gz edwinmattiacci.com-0ca13d03f3bca48f1f50119bbc6887f5c0ce43ed.tar.bz2 edwinmattiacci.com-0ca13d03f3bca48f1f50119bbc6887f5c0ce43ed.zip |
views/partials/footer: Remove all except email.
Reduce traffic.
-rw-r--r-- | views/partials/footer.php | 42 |
1 files changed, 9 insertions, 33 deletions
diff --git a/views/partials/footer.php b/views/partials/footer.php index 192a18a..e2f2a6b 100644 --- a/views/partials/footer.php +++ b/views/partials/footer.php @@ -1,39 +1,15 @@ </div> </section> -<footer class ="bg-gray-100 border-t"> - <div class="mx-auto p-6 max-w-md text-gray-800"> - - <p class="mb-2 text-sm"> - - <a href="mailto:<?php echo mb_encode_numericentity('edwinmattiacci@yahoo.com', array(0x000000, 0x10ffff, 0, 0xffffff), 'UTF-8'); ?>" class="underline"> - Email</a> - - <span>|</span> - - <a href="https://www.youtube.com/c/EdwinMattiacci" class="underline"> - YouTube</a> - - <span>|</span> - - <a href="https://soundcloud.com/user-825887030" class="underline"> - SoundCloud</a> - - <span>|</span> - - <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PCZWCVXR9DJTW" class="underline"> - PayPal</a> - - <span>|</span> - - <a href="https://admin.gear.mycelium.com/gateways/2031/orders/new" class="underline"> - Bitcoin</a> - - </p> - - <p>© Copyright <?php echo date('Y');?>. Edwin Mattiacci Voiceover</p> - -</div> +<footer class ="bg-gray-100 border-t text-center"> + <div class="mx-auto p-6 max-w-md text-gray-800"> + <p class="mb-2 text-sm"> + <a href="mailto:<?php echo mb_encode_numericentity('edwinmattiacci@yahoo.com', array(0x000000, 0x10ffff, 0, 0xffffff), 'UTF-8'); ?>" class="underline"> + Email + </a> + </p> + <p>© Copyright <?php echo date('Y');?>. Edwin Mattiacci Voiceover</p> + </div> </footer> </div> |