- Created Articles.php for rendering article views including full articles, miniature lists, and news sections. - Added Banners.php for handling banner displays. - Introduced Languages.php for rendering language options. - Implemented Menu.php for dynamic menu rendering. - Developed Newsletter.php for newsletter view rendering. - Created Scontainers.php for rendering specific containers. - Added ShopCategory.php for category descriptions and product listings. - Introduced ShopClient.php for managing client-related views such as address editing and order history. - Implemented ShopPaymentMethod.php for displaying payment methods in the basket. - Created ShopProduct.php for generating product URLs. - Added ShopSearch.php for rendering a simple search form. - Added .htaccess file to enhance security by restricting access to sensitive files and directories.
79 lines
3.4 KiB
PHP
79 lines
3.4 KiB
PHP
<div class="footer box">
|
|
<div class="container">
|
|
<div class="row">
|
|
<!-- <div class="col-12 col-xl-3">
|
|
<div class="footer-left">
|
|
<img
|
|
src="/upload/filemanager/white_270x.png"
|
|
alt=""
|
|
class="footer-logo"
|
|
/>
|
|
<div class="footer-description">
|
|
<p>
|
|
Lorem Ipsum is simply dummy text of the printin and is the
|
|
typesetting industry. Lorem Ipsum has been the industry's
|
|
standard dummy text ever since th 1500s, when an unknown.
|
|
</p>
|
|
</div>
|
|
<div class="footer-socials">
|
|
<div class="favebook social-item">
|
|
<p><i class="fa fa-facebook"></i></p>
|
|
</div>
|
|
<div class="instagram social-item">
|
|
<p><i class="fa fa-instagram"></i></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> -->
|
|
<div class="col-md-12 col-lg-3 col-xl-3 mb-5 mb-lg-0">
|
|
<div class="box-title">Moje konto</div>
|
|
<nav>
|
|
<ul>
|
|
<li>
|
|
<a href="/logowanie" title="Zaloguj się"> Zaloguj się</a>
|
|
</li>
|
|
<li>
|
|
<a href="/rejestracja" title="Załóż konto">Załóż konto</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
<div class="col-md-12 col-lg-3 col-xl-3 mb-5 mb-lg-0">
|
|
<div class="box-title">O firmie</div>
|
|
<?= \front\Views\Menu::menu( (new \Domain\Pages\PagesRepository( $GLOBALS['mdb'] ))->frontMenuDetails( 2, $GLOBALS['lang_id'] ), $page['id'] ); ?>
|
|
</div>
|
|
<div class="col-md-12 col-lg-3 col-xl-3 mb-5 mb-lg-0">
|
|
<?= \front\Views\Scontainers::scontainer( 11 ); ?>
|
|
</div>
|
|
<div class="col-md-12 col-lg-3 col-xl-3 mb-5 mb-lg-0">
|
|
<div class="box-title">Dołącz do nas</div>
|
|
<nav class="footer-social-list">
|
|
<ul class="contact-list">
|
|
<li class="contact-item">
|
|
<a href="https://www.facebook.com/sklep.pomyslowe.prezenty" target="_blank">
|
|
<i class="fa fa-facebook" aria-hidden="true"></i>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://www.instagram.com/sklep.pomyslowe.prezenty" target="_blank">
|
|
<i class="fa fa-instagram" aria-hidden="true"></i>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<!-- <?= \front\Views\Scontainers::scontainer( 16 ); ?> -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="footer-bottom box">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12 col-lg-8">
|
|
<?= \front\LayoutEngine::copyright(); ?>
|
|
</div>
|
|
<div class="col-12 col-lg-4"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|