aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-03-28 21:47:14 -0400
committerThedro Neely <thedroneely@gmail.com>2019-03-28 21:47:14 -0400
commit655b681bedb3a83fc46566e6b857fae117eb1c93 (patch)
treeb390a83089ec5f16c76ae4b81079d35a963388fa
parentbabacc5e790461f0a945592ffb1f1aff8023720b (diff)
downloadedwinmattiacci.com-655b681bedb3a83fc46566e6b857fae117eb1c93.tar.gz
edwinmattiacci.com-655b681bedb3a83fc46566e6b857fae117eb1c93.tar.bz2
edwinmattiacci.com-655b681bedb3a83fc46566e6b857fae117eb1c93.zip
views/partials/footer: Contain footer with background color instead of borders
-rw-r--r--views/partials/footer.php76
1 files changed, 48 insertions, 28 deletions
diff --git a/views/partials/footer.php b/views/partials/footer.php
index 04cf8db..7ee513b 100644
--- a/views/partials/footer.php
+++ b/views/partials/footer.php
@@ -1,34 +1,54 @@
+</div>
+</section>
-<hr class="bg-grey-light h-px my-6">
-
-<p class="text-grey-darker">&copy; Copyright <?php echo date('Y');?>. Edwin Mattiacci Voiceover</p>
-
-<br>
-
-<!-- Footer Icons -->
-<div class="footer-icons">
-
- <div class="inline-flex flex-wrap mb-1">
- <a href="mailto:edwinmattiacci@yahoo.com" class="w-20 bg-grey-light px-4 py-2 m-2 rounded hover:bg-blue-lighter">
- <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT'] . '/..' . '/public/icons/feathericons/mail.svg') ?>
- </a>
- <a href="https://www.youtube.com/c/EdwinMattiacci" class="w-20 bg-grey-light px-4 py-2 m-2 rounded hover:bg-blue-lighter">
- <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT'] . '/..' . '/public/icons/feathericons/youtube.svg') ?>
- </a>
- <a href="https://soundcloud.com/user-825887030" class="w-20 bg-grey-light px-4 py-2 m-2 rounded hover:bg-blue-lighter">
- <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT'] . '/..' . '/public/icons/feathericons/cloud.svg') ?>
- </a>
- <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PCZWCVXR9DJTW" class="w-20 bg-grey-light px-4 py-2 m-2 rounded hover:bg-blue-lighter">
- <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT'] . '/..' . '/public/icons/feathericons/coffee.svg') ?>
- </a>
- <a href="https://admin.gear.mycelium.com/gateways/2031/orders/new" class="w-20 bg-grey-light px-4 py-2 m-2 rounded hover:bg-blue-lighter">
- <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT'] . '/..' . '/public/icons/feathericons/globe.svg') ?>
- </a>
- </div>
+<footer class ="bg-grey-lightest border-t">
+ <section class="mx-auto p-6 max-w-sm">
-</div>
+ <!-- Footer Icons -->
+ <div class="footer-icons">
-</div>
+ <div class="inline-flex flex-wrap mb-1">
+
+ <a href="mailto:edwinmattiacci@yahoo.com"
+ class="w-20 bg-grey-light p-2 my-2 mr-2 rounded hover:bg-blue-lighter">
+ <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT']
+ . '/..' . '/public/icons/feathericons/mail.svg') ?>
+ </a>
+
+ <a href="https://www.youtube.com/c/EdwinMattiacci"
+ class="w-20 bg-grey-light p-2 my-2 mr-2 rounded hover:bg-blue-lighter">
+ <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT']
+ . '/..' . '/public/icons/feathericons/youtube.svg') ?>
+ </a>
+
+ <a href="https://soundcloud.com/user-825887030"
+ class="w-20 bg-grey-light p-2 my-2 mr-2 rounded hover:bg-blue-lighter">
+ <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT']
+ . '/..' . '/public/icons/feathericons/cloud.svg') ?>
+ </a>
+
+ <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PCZWCVXR9DJTW"
+ class="w-20 bg-grey-light p-2 my-2 mr-2 rounded hover:bg-blue-lighter">
+ <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT']
+ . '/..' . '/public/icons/feathericons/coffee.svg') ?>
+ </a>
+
+ <a href="https://admin.gear.mycelium.com/gateways/2031/orders/new"
+ class="w-20 bg-grey-light p-2 my-2 mr-2 rounded hover:bg-blue-lighter">
+ <?php echo file_get_contents($_SERVER['DOCUMENT_ROOT']
+ . '/..' . '/public/icons/feathericons/globe.svg') ?>
+ </a>
+
+ </div>
+
+ <p class="text-grey-darker">
+ &copy; Copyright <?php echo date('Y');?>. Edwin Mattiacci Voiceover
+ </p>
+
+ </div>
+
+ </section>
+</footer>
</div>
</div>