feat(main): Add base theme: This is the falcon theme out of the box.
This is falcon v3.1.2
This commit is contained in:
113
falcon/templates/customer/my-account.tpl
Normal file
113
falcon/templates/customer/my-account.tpl
Normal file
@ -0,0 +1,113 @@
|
||||
{**
|
||||
* Copyright since 2007 PrestaShop SA and Contributors
|
||||
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
|
||||
* that is bundled with this package in the file LICENSE.md.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* https://opensource.org/licenses/AFL-3.0
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to https://devdocs.prestashop.com/ for more information.
|
||||
*
|
||||
* @author PrestaShop SA and Contributors <contact@prestashop.com>
|
||||
* @copyright Since 2007 PrestaShop SA and Contributors
|
||||
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
||||
*}
|
||||
{extends file='customer/page.tpl'}
|
||||
|
||||
{block name='page_title'}
|
||||
{l s='Your account' d='Shop.Theme.Customeraccount'}
|
||||
{/block}
|
||||
|
||||
{block name='page_content'}
|
||||
{Tools::redirect('identity')}
|
||||
|
||||
<div class="row">
|
||||
<div class="links">
|
||||
|
||||
<a class="col-lg-4 col-md-6 col-sm-6 col-12" id="identity-link" href="{$urls.pages.identity}">
|
||||
<span class="link-item">
|
||||
<i class="material-icons">account_circle</i>
|
||||
{l s='Information' d='Shop.Theme.Customeraccount'}
|
||||
</span>
|
||||
</a>
|
||||
|
||||
{if $customer.addresses|count}
|
||||
<a class="col-lg-4 col-md-6 col-sm-6 col-12" id="addresses-link" href="{$urls.pages.addresses}">
|
||||
<span class="link-item">
|
||||
<i class="material-icons">location_on</i>
|
||||
{l s='Addresses' d='Shop.Theme.Customeraccount'}
|
||||
</span>
|
||||
</a>
|
||||
{else}
|
||||
<a class="col-lg-4 col-md-6 col-sm-6 col-12" id="address-link" href="{$urls.pages.address}">
|
||||
<span class="link-item">
|
||||
<i class="material-icons">location_on</i>
|
||||
{l s='Add first address' d='Shop.Theme.Customeraccount'}
|
||||
</span>
|
||||
</a>
|
||||
{/if}
|
||||
|
||||
{if !$configuration.is_catalog}
|
||||
<a class="col-lg-4 col-md-6 col-sm-6 col-12" id="history-link" href="{$urls.pages.history}">
|
||||
<span class="link-item">
|
||||
<i class="material-icons">library_books</i>
|
||||
{l s='Order history and details' d='Shop.Theme.Customeraccount'}
|
||||
</span>
|
||||
</a>
|
||||
{/if}
|
||||
|
||||
{if !$configuration.is_catalog}
|
||||
<a class="col-lg-4 col-md-6 col-sm-6 col-12" id="order-slips-link" href="{$urls.pages.order_slip}">
|
||||
<span class="link-item">
|
||||
<i class="material-icons"></i>
|
||||
{l s='Credit slips' d='Shop.Theme.Customeraccount'}
|
||||
</span>
|
||||
</a>
|
||||
{/if}
|
||||
|
||||
{if $configuration.voucher_enabled && !$configuration.is_catalog}
|
||||
<a class="col-lg-4 col-md-6 col-sm-6 col-12" id="discounts-link" href="{$urls.pages.discount}">
|
||||
<span class="link-item">
|
||||
<i class="material-icons"></i>
|
||||
{l s='Vouchers' d='Shop.Theme.Customeraccount'}
|
||||
</span>
|
||||
</a>
|
||||
{/if}
|
||||
|
||||
{if $configuration.return_enabled && !$configuration.is_catalog}
|
||||
<a class="col-lg-4 col-md-6 col-sm-6 col-12" id="returns-link" href="{$urls.pages.order_follow}">
|
||||
<span class="link-item">
|
||||
<i class="material-icons"></i>
|
||||
{l s='Merchandise returns' d='Shop.Theme.Customeraccount'}
|
||||
</span>
|
||||
</a>
|
||||
{/if}
|
||||
|
||||
{block name='display_customer_account'}
|
||||
{hook h='displayCustomerAccount'}
|
||||
{/block}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
{/block}
|
||||
|
||||
|
||||
{block name='page_footer'}
|
||||
{block name='my_account_links'}
|
||||
<div class="text-sm-center">
|
||||
<a href="{$urls.actions.logout}" >
|
||||
{l s='Sign out' d='Shop.Theme.Actions'}
|
||||
</a>
|
||||
</div>
|
||||
{/block}
|
||||
{/block}
|
||||
Reference in New Issue
Block a user