32 lines
755 B
Smarty
32 lines
755 B
Smarty
{*
|
|
* 2010-2022 Webkul.
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* All right is reserved,
|
|
* Please go through LICENSE.txt file inside our module
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade this module to newer
|
|
* versions in the future. If you wish to customize this module for your
|
|
* needs please refer to CustomizationPolicy.txt file inside our module for more information.
|
|
*
|
|
* @author Webkul IN
|
|
* @copyright 2010-2022 Webkul IN
|
|
* @license LICENSE.txt
|
|
*}
|
|
|
|
{if $email}
|
|
<div class="contact-item">
|
|
<i class="icon-envelope-o"></i>
|
|
<a href="mailto:{$email}">{$email}</a>
|
|
</div>
|
|
{/if}
|
|
{if $phone}
|
|
<div class="contact-item">
|
|
<i class="icon-phone"></i>
|
|
<a href="tel:{$phone}">{$phone}</a>
|
|
</div>
|
|
{/if}
|