2018-04-21 17:35:58 -06:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
?>
|
2018-05-05 00:31:24 -06:00
|
|
|
|
|
|
|
<footer class="footer jumbotron mt-5 mb-0">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 col-md-6">
|
|
|
|
</div>
|
|
|
|
<div class="col-12 col-md-6">
|
|
|
|
<?php output_conditional("<h4>[[VAR]]</h4>", get_setting("businessname")); ?>
|
|
|
|
<?php
|
2018-05-09 13:53:55 -06:00
|
|
|
output_conditional('<div class="d-flex"><div class="mr-2"><i class="fas fa-phone fa-fw"></i></div> <div><a style="font-size: 130%; color: inherit;" href="tel:[[VAR]]">' . get_setting("phone") . '</a></div></div>', preg_replace("/[^0-9+]/", "", get_setting("phone")));
|
2018-05-05 00:31:24 -06:00
|
|
|
output_conditional('<div class="d-flex"><div class="mr-2"><i class="fas fa-map fa-fw"></i></div> <div>[[VAR]]</div></div>', str_replace("\n", "<br />\n", get_setting("address")));
|
|
|
|
output_conditional('<div class="d-flex"><div class="mr-2"><i class="fas fa-envelope fa-fw"></i></div> <div>[[VAR]]</div></div>', get_setting("email"));
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="text-center my-4">
|
|
|
|
<?php
|
2018-05-08 02:01:51 -06:00
|
|
|
$social = get_socialmedia_urls();
|
|
|
|
foreach ($social as $s) {
|
|
|
|
?>
|
|
|
|
<a class="btn btn-outline-primary m-1" href="<?php echo $s['url']; ?>">
|
|
|
|
<i class="<?php echo $s['icon']; ?> fa-fw"></i>
|
|
|
|
<span class="sr-only"><?php echo $s['name']; ?></span>
|
|
|
|
</a>
|
|
|
|
<?php
|
|
|
|
}
|
2018-05-05 00:31:24 -06:00
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
<div class="text-center text-muted font-weight-light mt-4">
|
|
|
|
<?php output_conditional("© " . date('Y') . " [[VAR]]. All rights reserved.", get_setting("businessname")); ?>
|
|
|
|
<br />
|
|
|
|
<span>Design by <a href="https://netsyms.com">Netsyms Technologies</a>.</span>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
|
2018-04-21 17:35:58 -06:00
|
|
|
<script src="<?php get_theme_url(); ?>/assets/jquery-3.3.1.slim.min.js"></script>
|
|
|
|
<script src="<?php get_theme_url(); ?>/assets/popper.min.js"></script>
|
2018-05-05 00:31:24 -06:00
|
|
|
<script src="<?php get_theme_url(); ?>/assets/bootstrap.min.js"></script>
|
|
|
|
<?php get_footer(); ?>
|