├── .github └── workflows │ ├── build.yml │ ├── lint.yml │ └── yamllint │ └── .yamllint.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── _dev ├── .browserslistrc ├── .eslintignore ├── .eslintrc.js ├── .htaccess ├── .stylelintignore ├── .stylelintrc ├── css │ ├── components │ │ ├── alert.scss │ │ ├── block-reassurance.scss │ │ ├── brands.scss │ │ ├── cart.scss │ │ ├── categories.scss │ │ ├── checkout.scss │ │ ├── contact.scss │ │ ├── custom-text.scss │ │ ├── customer.scss │ │ ├── customization-modal.scss │ │ ├── drop-down.scss │ │ ├── errors.scss │ │ ├── featuredproducts.scss │ │ ├── footer.scss │ │ ├── forgotten-password.scss │ │ ├── header.scss │ │ ├── imageslider.scss │ │ ├── main.scss │ │ ├── mainmenu.scss │ │ ├── newsletter.scss │ │ ├── notifications.scss │ │ ├── products.scss │ │ ├── progressbar.scss │ │ ├── quickview.scss │ │ ├── renew-password.scss │ │ ├── search-widget.scss │ │ ├── sitemap.scss │ │ ├── stores.scss │ │ ├── subcategories.scss │ │ ├── suppliers.scss │ │ └── wrapper.scss │ ├── error.scss │ ├── partials │ │ ├── _commons.scss │ │ ├── _fonts.scss │ │ ├── _mixins.scss │ │ └── _variables.scss │ └── theme.scss ├── img │ ├── facebook-blue.svg │ ├── facebook-gray.svg │ ├── facebook.svg │ ├── gplus-blue.svg │ ├── gplus-gray.svg │ ├── gplus.svg │ ├── instagram.svg │ ├── linkedin.svg │ ├── pinterest-blue.svg │ ├── pinterest-gray.svg │ ├── pinterest.svg │ ├── rss.svg │ ├── twitter-blue.svg │ ├── twitter-gray.svg │ ├── twitter.svg │ ├── vimeo.svg │ └── youtube.svg ├── js │ ├── cart.js │ ├── checkout.js │ ├── components │ │ ├── block-cart.js │ │ ├── debounce.js │ │ ├── drop-down.js │ │ ├── form.js │ │ ├── product-miniature.js │ │ ├── product-select.js │ │ ├── top-menu.js │ │ ├── update-sources.js │ │ └── usePasswordPolicy.js │ ├── customer.js │ ├── lib │ │ ├── bootstrap-filestyle.min.js │ │ └── jquery.scrollbox.min.js │ ├── listing.js │ ├── product.js │ ├── responsive.js │ ├── selectors.js │ └── theme.js ├── package-lock.json ├── package.json ├── postcss.config.js └── webpack.config.js ├── composer.json ├── config ├── .htaccess └── theme.yml ├── modules ├── blockreassurance │ └── views │ │ └── templates │ │ └── hook │ │ └── blockreassurance.tpl ├── contactform │ └── views │ │ └── templates │ │ └── widget │ │ └── contactform.tpl ├── ps_advertising │ ├── index.php │ └── ps_advertising.tpl ├── ps_banner │ └── ps_banner.tpl ├── ps_bestsellers │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── hook │ │ ├── index.php │ │ └── ps_bestsellers.tpl │ │ └── index.php ├── ps_brandlist │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── _partials │ │ ├── brand_form.tpl │ │ ├── brand_text.tpl │ │ └── index.php │ │ ├── hook │ │ ├── index.php │ │ └── ps_brandlist.tpl │ │ └── index.php ├── ps_categoryproducts │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── hook │ │ ├── index.php │ │ └── ps_categoryproducts.tpl │ │ └── index.php ├── ps_categorytree │ └── views │ │ └── templates │ │ └── hook │ │ └── ps_categorytree.tpl ├── ps_contactinfo │ ├── nav.tpl │ ├── ps_contactinfo-rich.tpl │ └── ps_contactinfo.tpl ├── ps_crossselling │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── hook │ │ ├── index.php │ │ └── ps_crossselling.tpl │ │ └── index.php ├── ps_currencyselector │ └── ps_currencyselector.tpl ├── ps_customeraccountlinks │ └── ps_customeraccountlinks.tpl ├── ps_customersignin │ └── ps_customersignin.tpl ├── ps_emailalerts │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── hook │ │ ├── index.php │ │ ├── my-account-footer.tpl │ │ └── my-account.tpl │ │ └── index.php ├── ps_emailsubscription │ └── views │ │ └── templates │ │ └── hook │ │ ├── ps_emailsubscription-column.tpl │ │ └── ps_emailsubscription.tpl ├── ps_facetedsearch │ └── ps_facetedsearch.tpl ├── ps_featuredproducts │ └── views │ │ └── templates │ │ └── hook │ │ └── ps_featuredproducts.tpl ├── ps_imageslider │ └── views │ │ └── templates │ │ └── hook │ │ └── slider.tpl ├── ps_languageselector │ └── ps_languageselector.tpl ├── ps_legalcompliance │ └── views │ │ └── templates │ │ └── hook │ │ └── hookDisplayFooter.tpl ├── ps_linklist │ └── views │ │ └── templates │ │ └── hook │ │ ├── linkblock-column.tpl │ │ └── linkblock.tpl ├── ps_mainmenu │ └── ps_mainmenu.tpl ├── ps_newproducts │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── hook │ │ ├── index.php │ │ └── ps_newproducts.tpl │ │ └── index.php ├── ps_productinfo │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── hook │ │ ├── index.php │ │ └── ps_productinfo.tpl │ │ └── index.php ├── ps_rssfeed │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── hook │ │ ├── index.php │ │ └── ps_rssfeed.tpl │ │ └── index.php ├── ps_sharebuttons │ └── views │ │ └── templates │ │ └── hook │ │ └── ps_sharebuttons.tpl ├── ps_shoppingcart │ ├── modal.tpl │ ├── ps_shoppingcart-product-line.tpl │ └── ps_shoppingcart.tpl ├── ps_socialfollow │ └── ps_socialfollow.tpl ├── ps_specials │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── hook │ │ ├── index.php │ │ └── ps_specials.tpl │ │ └── index.php ├── ps_supplierlist │ └── views │ │ ├── index.php │ │ └── templates │ │ ├── _partials │ │ ├── index.php │ │ ├── supplier_form.tpl │ │ └── supplier_text.tpl │ │ ├── hook │ │ ├── index.php │ │ └── ps_supplierlist.tpl │ │ └── index.php └── ps_viewedproduct │ └── views │ ├── index.php │ └── templates │ ├── hook │ ├── index.php │ └── ps_viewedproduct.tpl │ └── index.php ├── plugins └── .gitkeep ├── preview-mobile.png ├── preview-tablet.png ├── preview.png └── templates ├── _partials ├── breadcrumb.tpl ├── footer.tpl ├── form-errors.tpl ├── form-fields.tpl ├── head.tpl ├── header.tpl ├── helpers.tpl ├── javascript.tpl ├── microdata │ ├── head-jsonld.tpl │ ├── product-jsonld.tpl │ └── product-list-jsonld.tpl ├── notifications.tpl ├── pagination-seo.tpl ├── pagination.tpl ├── password-policy-template.tpl └── stylesheets.tpl ├── catalog ├── _partials │ ├── active_filters.tpl │ ├── category-footer.tpl │ ├── category-header.tpl │ ├── facets.tpl │ ├── miniatures │ │ ├── brand.tpl │ │ ├── category.tpl │ │ ├── pack-product.tpl │ │ ├── product.tpl │ │ └── supplier.tpl │ ├── product-activation.tpl │ ├── product-add-to-cart.tpl │ ├── product-additional-info.tpl │ ├── product-cover-thumbnails.tpl │ ├── product-customization.tpl │ ├── product-details.tpl │ ├── product-discounts.tpl │ ├── product-flags.tpl │ ├── product-images-modal.tpl │ ├── product-prices.tpl │ ├── product-variants.tpl │ ├── productlist.tpl │ ├── products-bottom.tpl │ ├── products-top.tpl │ ├── products.tpl │ ├── quickview.tpl │ ├── sort-orders.tpl │ ├── subcategories.tpl │ └── variant-links.tpl ├── listing │ ├── best-sales.tpl │ ├── category.tpl │ ├── manufacturer.tpl │ ├── new-products.tpl │ ├── prices-drop.tpl │ ├── product-list.tpl │ ├── search.tpl │ └── supplier.tpl ├── manufacturers.tpl ├── product.tpl └── suppliers.tpl ├── checkout ├── _partials │ ├── address-form.tpl │ ├── address-selector-block.tpl │ ├── cart-detailed-actions.tpl │ ├── cart-detailed-product-line.tpl │ ├── cart-detailed-totals.tpl │ ├── cart-detailed.tpl │ ├── cart-summary-items-subtotal.tpl │ ├── cart-summary-product-line.tpl │ ├── cart-summary-products.tpl │ ├── cart-summary-subtotals.tpl │ ├── cart-summary-top.tpl │ ├── cart-summary-totals.tpl │ ├── cart-summary.tpl │ ├── cart-voucher.tpl │ ├── customer-form.tpl │ ├── footer.tpl │ ├── header.tpl │ ├── login-form.tpl │ ├── order-confirmation-table-multishipment.tpl │ ├── order-confirmation-table.tpl │ ├── order-final-summary-table-multishipment.tpl │ ├── order-final-summary-table.tpl │ ├── order-final-summary.tpl │ └── steps │ │ ├── addresses.tpl │ │ ├── checkout-step.tpl │ │ ├── payment.tpl │ │ ├── personal-information.tpl │ │ ├── shipping.tpl │ │ └── unreachable.tpl ├── cart-empty.tpl ├── cart.tpl ├── checkout-process.tpl ├── checkout.tpl └── order-confirmation.tpl ├── cms ├── _partials │ └── sitemap-nested-list.tpl ├── category.tpl ├── page.tpl ├── sitemap.tpl └── stores.tpl ├── contact.tpl ├── customer ├── _partials │ ├── account-transformation-form.tpl │ ├── address-form.tpl │ ├── block-address.tpl │ ├── customer-form.tpl │ ├── login-form.tpl │ ├── my-account-links.tpl │ ├── order-detail-no-return.tpl │ ├── order-detail-return.tpl │ └── order-messages.tpl ├── address.tpl ├── addresses.tpl ├── authentication.tpl ├── discount.tpl ├── guest-login.tpl ├── guest-tracking.tpl ├── history.tpl ├── identity.tpl ├── my-account.tpl ├── order-detail.tpl ├── order-follow.tpl ├── order-return.tpl ├── order-slip.tpl ├── page.tpl ├── password-email.tpl ├── password-infos.tpl ├── password-new.tpl └── registration.tpl ├── errors ├── 404.tpl ├── 410.tpl ├── forbidden.tpl ├── maintenance.tpl ├── not-found.tpl └── restricted-country.tpl ├── index.tpl ├── layouts ├── layout-both-columns.tpl ├── layout-content-only.tpl ├── layout-error.tpl ├── layout-full-width.tpl ├── layout-left-column.tpl └── layout-right-column.tpl └── page.tpl /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/yamllint/.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/.github/workflows/yamllint/.yamllint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | node_modules 3 | assets 4 | 5 | #vscode config 6 | .hintrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/README.md -------------------------------------------------------------------------------- /_dev/.browserslistrc: -------------------------------------------------------------------------------- 1 | last 2 versions 2 | ie 11 3 | -------------------------------------------------------------------------------- /_dev/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/.eslintignore -------------------------------------------------------------------------------- /_dev/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/.eslintrc.js -------------------------------------------------------------------------------- /_dev/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/.htaccess -------------------------------------------------------------------------------- /_dev/.stylelintignore: -------------------------------------------------------------------------------- 1 | nodes_modules -------------------------------------------------------------------------------- /_dev/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/.stylelintrc -------------------------------------------------------------------------------- /_dev/css/components/alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/alert.scss -------------------------------------------------------------------------------- /_dev/css/components/block-reassurance.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/block-reassurance.scss -------------------------------------------------------------------------------- /_dev/css/components/brands.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/brands.scss -------------------------------------------------------------------------------- /_dev/css/components/cart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/cart.scss -------------------------------------------------------------------------------- /_dev/css/components/categories.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/categories.scss -------------------------------------------------------------------------------- /_dev/css/components/checkout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/checkout.scss -------------------------------------------------------------------------------- /_dev/css/components/contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/contact.scss -------------------------------------------------------------------------------- /_dev/css/components/custom-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/custom-text.scss -------------------------------------------------------------------------------- /_dev/css/components/customer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/customer.scss -------------------------------------------------------------------------------- /_dev/css/components/customization-modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/customization-modal.scss -------------------------------------------------------------------------------- /_dev/css/components/drop-down.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/drop-down.scss -------------------------------------------------------------------------------- /_dev/css/components/errors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/errors.scss -------------------------------------------------------------------------------- /_dev/css/components/featuredproducts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/featuredproducts.scss -------------------------------------------------------------------------------- /_dev/css/components/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/footer.scss -------------------------------------------------------------------------------- /_dev/css/components/forgotten-password.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/forgotten-password.scss -------------------------------------------------------------------------------- /_dev/css/components/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/header.scss -------------------------------------------------------------------------------- /_dev/css/components/imageslider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/imageslider.scss -------------------------------------------------------------------------------- /_dev/css/components/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/main.scss -------------------------------------------------------------------------------- /_dev/css/components/mainmenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/mainmenu.scss -------------------------------------------------------------------------------- /_dev/css/components/newsletter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/newsletter.scss -------------------------------------------------------------------------------- /_dev/css/components/notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/notifications.scss -------------------------------------------------------------------------------- /_dev/css/components/products.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/products.scss -------------------------------------------------------------------------------- /_dev/css/components/progressbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/progressbar.scss -------------------------------------------------------------------------------- /_dev/css/components/quickview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/quickview.scss -------------------------------------------------------------------------------- /_dev/css/components/renew-password.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/renew-password.scss -------------------------------------------------------------------------------- /_dev/css/components/search-widget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/search-widget.scss -------------------------------------------------------------------------------- /_dev/css/components/sitemap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/sitemap.scss -------------------------------------------------------------------------------- /_dev/css/components/stores.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/stores.scss -------------------------------------------------------------------------------- /_dev/css/components/subcategories.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/subcategories.scss -------------------------------------------------------------------------------- /_dev/css/components/suppliers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/suppliers.scss -------------------------------------------------------------------------------- /_dev/css/components/wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/components/wrapper.scss -------------------------------------------------------------------------------- /_dev/css/error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/error.scss -------------------------------------------------------------------------------- /_dev/css/partials/_commons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/partials/_commons.scss -------------------------------------------------------------------------------- /_dev/css/partials/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/partials/_fonts.scss -------------------------------------------------------------------------------- /_dev/css/partials/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/partials/_mixins.scss -------------------------------------------------------------------------------- /_dev/css/partials/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/partials/_variables.scss -------------------------------------------------------------------------------- /_dev/css/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/css/theme.scss -------------------------------------------------------------------------------- /_dev/img/facebook-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/facebook-blue.svg -------------------------------------------------------------------------------- /_dev/img/facebook-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/facebook-gray.svg -------------------------------------------------------------------------------- /_dev/img/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/facebook.svg -------------------------------------------------------------------------------- /_dev/img/gplus-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/gplus-blue.svg -------------------------------------------------------------------------------- /_dev/img/gplus-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/gplus-gray.svg -------------------------------------------------------------------------------- /_dev/img/gplus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/gplus.svg -------------------------------------------------------------------------------- /_dev/img/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/instagram.svg -------------------------------------------------------------------------------- /_dev/img/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/linkedin.svg -------------------------------------------------------------------------------- /_dev/img/pinterest-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/pinterest-blue.svg -------------------------------------------------------------------------------- /_dev/img/pinterest-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/pinterest-gray.svg -------------------------------------------------------------------------------- /_dev/img/pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/pinterest.svg -------------------------------------------------------------------------------- /_dev/img/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/rss.svg -------------------------------------------------------------------------------- /_dev/img/twitter-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/twitter-blue.svg -------------------------------------------------------------------------------- /_dev/img/twitter-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/twitter-gray.svg -------------------------------------------------------------------------------- /_dev/img/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/twitter.svg -------------------------------------------------------------------------------- /_dev/img/vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/vimeo.svg -------------------------------------------------------------------------------- /_dev/img/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/img/youtube.svg -------------------------------------------------------------------------------- /_dev/js/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/cart.js -------------------------------------------------------------------------------- /_dev/js/checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/checkout.js -------------------------------------------------------------------------------- /_dev/js/components/block-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/components/block-cart.js -------------------------------------------------------------------------------- /_dev/js/components/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/components/debounce.js -------------------------------------------------------------------------------- /_dev/js/components/drop-down.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/components/drop-down.js -------------------------------------------------------------------------------- /_dev/js/components/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/components/form.js -------------------------------------------------------------------------------- /_dev/js/components/product-miniature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/components/product-miniature.js -------------------------------------------------------------------------------- /_dev/js/components/product-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/components/product-select.js -------------------------------------------------------------------------------- /_dev/js/components/top-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/components/top-menu.js -------------------------------------------------------------------------------- /_dev/js/components/update-sources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/components/update-sources.js -------------------------------------------------------------------------------- /_dev/js/components/usePasswordPolicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/components/usePasswordPolicy.js -------------------------------------------------------------------------------- /_dev/js/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/customer.js -------------------------------------------------------------------------------- /_dev/js/lib/bootstrap-filestyle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/lib/bootstrap-filestyle.min.js -------------------------------------------------------------------------------- /_dev/js/lib/jquery.scrollbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/lib/jquery.scrollbox.min.js -------------------------------------------------------------------------------- /_dev/js/listing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/listing.js -------------------------------------------------------------------------------- /_dev/js/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/product.js -------------------------------------------------------------------------------- /_dev/js/responsive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/responsive.js -------------------------------------------------------------------------------- /_dev/js/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/selectors.js -------------------------------------------------------------------------------- /_dev/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/js/theme.js -------------------------------------------------------------------------------- /_dev/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/package-lock.json -------------------------------------------------------------------------------- /_dev/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/package.json -------------------------------------------------------------------------------- /_dev/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/postcss.config.js -------------------------------------------------------------------------------- /_dev/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/_dev/webpack.config.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/composer.json -------------------------------------------------------------------------------- /config/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/config/.htaccess -------------------------------------------------------------------------------- /config/theme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/config/theme.yml -------------------------------------------------------------------------------- /modules/blockreassurance/views/templates/hook/blockreassurance.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/blockreassurance/views/templates/hook/blockreassurance.tpl -------------------------------------------------------------------------------- /modules/contactform/views/templates/widget/contactform.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/contactform/views/templates/widget/contactform.tpl -------------------------------------------------------------------------------- /modules/ps_advertising/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_advertising/index.php -------------------------------------------------------------------------------- /modules/ps_advertising/ps_advertising.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_advertising/ps_advertising.tpl -------------------------------------------------------------------------------- /modules/ps_banner/ps_banner.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_banner/ps_banner.tpl -------------------------------------------------------------------------------- /modules/ps_bestsellers/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_bestsellers/views/index.php -------------------------------------------------------------------------------- /modules/ps_bestsellers/views/templates/hook/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_bestsellers/views/templates/hook/index.php -------------------------------------------------------------------------------- /modules/ps_bestsellers/views/templates/hook/ps_bestsellers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_bestsellers/views/templates/hook/ps_bestsellers.tpl -------------------------------------------------------------------------------- /modules/ps_bestsellers/views/templates/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_bestsellers/views/templates/index.php -------------------------------------------------------------------------------- /modules/ps_brandlist/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_brandlist/views/index.php -------------------------------------------------------------------------------- /modules/ps_brandlist/views/templates/_partials/brand_form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_brandlist/views/templates/_partials/brand_form.tpl -------------------------------------------------------------------------------- /modules/ps_brandlist/views/templates/_partials/brand_text.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_brandlist/views/templates/_partials/brand_text.tpl -------------------------------------------------------------------------------- /modules/ps_brandlist/views/templates/_partials/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_brandlist/views/templates/_partials/index.php -------------------------------------------------------------------------------- /modules/ps_brandlist/views/templates/hook/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_brandlist/views/templates/hook/index.php -------------------------------------------------------------------------------- /modules/ps_brandlist/views/templates/hook/ps_brandlist.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_brandlist/views/templates/hook/ps_brandlist.tpl -------------------------------------------------------------------------------- /modules/ps_brandlist/views/templates/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_brandlist/views/templates/index.php -------------------------------------------------------------------------------- /modules/ps_categoryproducts/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_categoryproducts/views/index.php -------------------------------------------------------------------------------- /modules/ps_categoryproducts/views/templates/hook/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_categoryproducts/views/templates/hook/index.php -------------------------------------------------------------------------------- /modules/ps_categoryproducts/views/templates/hook/ps_categoryproducts.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_categoryproducts/views/templates/hook/ps_categoryproducts.tpl -------------------------------------------------------------------------------- /modules/ps_categoryproducts/views/templates/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_categoryproducts/views/templates/index.php -------------------------------------------------------------------------------- /modules/ps_categorytree/views/templates/hook/ps_categorytree.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_categorytree/views/templates/hook/ps_categorytree.tpl -------------------------------------------------------------------------------- /modules/ps_contactinfo/nav.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_contactinfo/nav.tpl -------------------------------------------------------------------------------- /modules/ps_contactinfo/ps_contactinfo-rich.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_contactinfo/ps_contactinfo-rich.tpl -------------------------------------------------------------------------------- /modules/ps_contactinfo/ps_contactinfo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_contactinfo/ps_contactinfo.tpl -------------------------------------------------------------------------------- /modules/ps_crossselling/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_crossselling/views/index.php -------------------------------------------------------------------------------- /modules/ps_crossselling/views/templates/hook/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_crossselling/views/templates/hook/index.php -------------------------------------------------------------------------------- /modules/ps_crossselling/views/templates/hook/ps_crossselling.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_crossselling/views/templates/hook/ps_crossselling.tpl -------------------------------------------------------------------------------- /modules/ps_crossselling/views/templates/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_crossselling/views/templates/index.php -------------------------------------------------------------------------------- /modules/ps_currencyselector/ps_currencyselector.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_currencyselector/ps_currencyselector.tpl -------------------------------------------------------------------------------- /modules/ps_customeraccountlinks/ps_customeraccountlinks.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_customeraccountlinks/ps_customeraccountlinks.tpl -------------------------------------------------------------------------------- /modules/ps_customersignin/ps_customersignin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_customersignin/ps_customersignin.tpl -------------------------------------------------------------------------------- /modules/ps_emailalerts/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_emailalerts/views/index.php -------------------------------------------------------------------------------- /modules/ps_emailalerts/views/templates/hook/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_emailalerts/views/templates/hook/index.php -------------------------------------------------------------------------------- /modules/ps_emailalerts/views/templates/hook/my-account-footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_emailalerts/views/templates/hook/my-account-footer.tpl -------------------------------------------------------------------------------- /modules/ps_emailalerts/views/templates/hook/my-account.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_emailalerts/views/templates/hook/my-account.tpl -------------------------------------------------------------------------------- /modules/ps_emailalerts/views/templates/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_emailalerts/views/templates/index.php -------------------------------------------------------------------------------- /modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription-column.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription-column.tpl -------------------------------------------------------------------------------- /modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl -------------------------------------------------------------------------------- /modules/ps_facetedsearch/ps_facetedsearch.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_facetedsearch/ps_facetedsearch.tpl -------------------------------------------------------------------------------- /modules/ps_featuredproducts/views/templates/hook/ps_featuredproducts.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_featuredproducts/views/templates/hook/ps_featuredproducts.tpl -------------------------------------------------------------------------------- /modules/ps_imageslider/views/templates/hook/slider.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_imageslider/views/templates/hook/slider.tpl -------------------------------------------------------------------------------- /modules/ps_languageselector/ps_languageselector.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_languageselector/ps_languageselector.tpl -------------------------------------------------------------------------------- /modules/ps_legalcompliance/views/templates/hook/hookDisplayFooter.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_legalcompliance/views/templates/hook/hookDisplayFooter.tpl -------------------------------------------------------------------------------- /modules/ps_linklist/views/templates/hook/linkblock-column.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_linklist/views/templates/hook/linkblock-column.tpl -------------------------------------------------------------------------------- /modules/ps_linklist/views/templates/hook/linkblock.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_linklist/views/templates/hook/linkblock.tpl -------------------------------------------------------------------------------- /modules/ps_mainmenu/ps_mainmenu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_mainmenu/ps_mainmenu.tpl -------------------------------------------------------------------------------- /modules/ps_newproducts/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_newproducts/views/index.php -------------------------------------------------------------------------------- /modules/ps_newproducts/views/templates/hook/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_newproducts/views/templates/hook/index.php -------------------------------------------------------------------------------- /modules/ps_newproducts/views/templates/hook/ps_newproducts.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_newproducts/views/templates/hook/ps_newproducts.tpl -------------------------------------------------------------------------------- /modules/ps_newproducts/views/templates/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_newproducts/views/templates/index.php -------------------------------------------------------------------------------- /modules/ps_productinfo/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_productinfo/views/index.php -------------------------------------------------------------------------------- /modules/ps_productinfo/views/templates/hook/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_productinfo/views/templates/hook/index.php -------------------------------------------------------------------------------- /modules/ps_productinfo/views/templates/hook/ps_productinfo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_productinfo/views/templates/hook/ps_productinfo.tpl -------------------------------------------------------------------------------- /modules/ps_productinfo/views/templates/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_productinfo/views/templates/index.php -------------------------------------------------------------------------------- /modules/ps_rssfeed/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_rssfeed/views/index.php -------------------------------------------------------------------------------- /modules/ps_rssfeed/views/templates/hook/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_rssfeed/views/templates/hook/index.php -------------------------------------------------------------------------------- /modules/ps_rssfeed/views/templates/hook/ps_rssfeed.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_rssfeed/views/templates/hook/ps_rssfeed.tpl -------------------------------------------------------------------------------- /modules/ps_rssfeed/views/templates/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_rssfeed/views/templates/index.php -------------------------------------------------------------------------------- /modules/ps_sharebuttons/views/templates/hook/ps_sharebuttons.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_sharebuttons/views/templates/hook/ps_sharebuttons.tpl -------------------------------------------------------------------------------- /modules/ps_shoppingcart/modal.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_shoppingcart/modal.tpl -------------------------------------------------------------------------------- /modules/ps_shoppingcart/ps_shoppingcart-product-line.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_shoppingcart/ps_shoppingcart-product-line.tpl -------------------------------------------------------------------------------- /modules/ps_shoppingcart/ps_shoppingcart.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_shoppingcart/ps_shoppingcart.tpl -------------------------------------------------------------------------------- /modules/ps_socialfollow/ps_socialfollow.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_socialfollow/ps_socialfollow.tpl -------------------------------------------------------------------------------- /modules/ps_specials/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_specials/views/index.php -------------------------------------------------------------------------------- /modules/ps_specials/views/templates/hook/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_specials/views/templates/hook/index.php -------------------------------------------------------------------------------- /modules/ps_specials/views/templates/hook/ps_specials.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_specials/views/templates/hook/ps_specials.tpl -------------------------------------------------------------------------------- /modules/ps_specials/views/templates/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_specials/views/templates/index.php -------------------------------------------------------------------------------- /modules/ps_supplierlist/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_supplierlist/views/index.php -------------------------------------------------------------------------------- /modules/ps_supplierlist/views/templates/_partials/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_supplierlist/views/templates/_partials/index.php -------------------------------------------------------------------------------- /modules/ps_supplierlist/views/templates/_partials/supplier_form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_supplierlist/views/templates/_partials/supplier_form.tpl -------------------------------------------------------------------------------- /modules/ps_supplierlist/views/templates/_partials/supplier_text.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_supplierlist/views/templates/_partials/supplier_text.tpl -------------------------------------------------------------------------------- /modules/ps_supplierlist/views/templates/hook/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_supplierlist/views/templates/hook/index.php -------------------------------------------------------------------------------- /modules/ps_supplierlist/views/templates/hook/ps_supplierlist.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_supplierlist/views/templates/hook/ps_supplierlist.tpl -------------------------------------------------------------------------------- /modules/ps_supplierlist/views/templates/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_supplierlist/views/templates/index.php -------------------------------------------------------------------------------- /modules/ps_viewedproduct/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_viewedproduct/views/index.php -------------------------------------------------------------------------------- /modules/ps_viewedproduct/views/templates/hook/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_viewedproduct/views/templates/hook/index.php -------------------------------------------------------------------------------- /modules/ps_viewedproduct/views/templates/hook/ps_viewedproduct.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_viewedproduct/views/templates/hook/ps_viewedproduct.tpl -------------------------------------------------------------------------------- /modules/ps_viewedproduct/views/templates/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/modules/ps_viewedproduct/views/templates/index.php -------------------------------------------------------------------------------- /plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /preview-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/preview-mobile.png -------------------------------------------------------------------------------- /preview-tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/preview-tablet.png -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/preview.png -------------------------------------------------------------------------------- /templates/_partials/breadcrumb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/breadcrumb.tpl -------------------------------------------------------------------------------- /templates/_partials/footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/footer.tpl -------------------------------------------------------------------------------- /templates/_partials/form-errors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/form-errors.tpl -------------------------------------------------------------------------------- /templates/_partials/form-fields.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/form-fields.tpl -------------------------------------------------------------------------------- /templates/_partials/head.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/head.tpl -------------------------------------------------------------------------------- /templates/_partials/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/header.tpl -------------------------------------------------------------------------------- /templates/_partials/helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/helpers.tpl -------------------------------------------------------------------------------- /templates/_partials/javascript.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/javascript.tpl -------------------------------------------------------------------------------- /templates/_partials/microdata/head-jsonld.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/microdata/head-jsonld.tpl -------------------------------------------------------------------------------- /templates/_partials/microdata/product-jsonld.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/microdata/product-jsonld.tpl -------------------------------------------------------------------------------- /templates/_partials/microdata/product-list-jsonld.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/microdata/product-list-jsonld.tpl -------------------------------------------------------------------------------- /templates/_partials/notifications.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/notifications.tpl -------------------------------------------------------------------------------- /templates/_partials/pagination-seo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/pagination-seo.tpl -------------------------------------------------------------------------------- /templates/_partials/pagination.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/pagination.tpl -------------------------------------------------------------------------------- /templates/_partials/password-policy-template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/password-policy-template.tpl -------------------------------------------------------------------------------- /templates/_partials/stylesheets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/_partials/stylesheets.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/active_filters.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/active_filters.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/category-footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/category-footer.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/category-header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/category-header.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/facets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/facets.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/miniatures/brand.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/miniatures/brand.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/miniatures/category.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/miniatures/category.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/miniatures/pack-product.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/miniatures/pack-product.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/miniatures/product.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/miniatures/product.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/miniatures/supplier.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/miniatures/supplier.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/product-activation.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/product-activation.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/product-add-to-cart.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/product-add-to-cart.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/product-additional-info.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/product-additional-info.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/product-cover-thumbnails.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/product-cover-thumbnails.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/product-customization.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/product-customization.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/product-details.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/product-details.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/product-discounts.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/product-discounts.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/product-flags.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/product-flags.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/product-images-modal.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/product-images-modal.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/product-prices.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/product-prices.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/product-variants.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/product-variants.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/productlist.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/productlist.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/products-bottom.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/products-bottom.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/products-top.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/products-top.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/products.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/products.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/quickview.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/quickview.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/sort-orders.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/sort-orders.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/subcategories.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/subcategories.tpl -------------------------------------------------------------------------------- /templates/catalog/_partials/variant-links.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/_partials/variant-links.tpl -------------------------------------------------------------------------------- /templates/catalog/listing/best-sales.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/listing/best-sales.tpl -------------------------------------------------------------------------------- /templates/catalog/listing/category.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/listing/category.tpl -------------------------------------------------------------------------------- /templates/catalog/listing/manufacturer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/listing/manufacturer.tpl -------------------------------------------------------------------------------- /templates/catalog/listing/new-products.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/listing/new-products.tpl -------------------------------------------------------------------------------- /templates/catalog/listing/prices-drop.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/listing/prices-drop.tpl -------------------------------------------------------------------------------- /templates/catalog/listing/product-list.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/listing/product-list.tpl -------------------------------------------------------------------------------- /templates/catalog/listing/search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/listing/search.tpl -------------------------------------------------------------------------------- /templates/catalog/listing/supplier.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/listing/supplier.tpl -------------------------------------------------------------------------------- /templates/catalog/manufacturers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/manufacturers.tpl -------------------------------------------------------------------------------- /templates/catalog/product.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/product.tpl -------------------------------------------------------------------------------- /templates/catalog/suppliers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/catalog/suppliers.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/address-form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/address-form.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/address-selector-block.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/address-selector-block.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/cart-detailed-actions.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/cart-detailed-actions.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/cart-detailed-product-line.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/cart-detailed-product-line.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/cart-detailed-totals.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/cart-detailed-totals.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/cart-detailed.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/cart-detailed.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/cart-summary-items-subtotal.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/cart-summary-items-subtotal.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/cart-summary-product-line.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/cart-summary-product-line.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/cart-summary-products.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/cart-summary-products.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/cart-summary-subtotals.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/cart-summary-subtotals.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/cart-summary-top.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/cart-summary-top.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/cart-summary-totals.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/cart-summary-totals.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/cart-summary.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/cart-summary.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/cart-voucher.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/cart-voucher.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/customer-form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/customer-form.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/footer.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/header.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/login-form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/login-form.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/order-confirmation-table-multishipment.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/order-confirmation-table-multishipment.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/order-confirmation-table.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/order-confirmation-table.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/order-final-summary-table-multishipment.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/order-final-summary-table-multishipment.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/order-final-summary-table.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/order-final-summary-table.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/order-final-summary.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/order-final-summary.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/steps/addresses.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/steps/addresses.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/steps/checkout-step.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/steps/checkout-step.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/steps/payment.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/steps/payment.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/steps/personal-information.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/steps/personal-information.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/steps/shipping.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/steps/shipping.tpl -------------------------------------------------------------------------------- /templates/checkout/_partials/steps/unreachable.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/_partials/steps/unreachable.tpl -------------------------------------------------------------------------------- /templates/checkout/cart-empty.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/cart-empty.tpl -------------------------------------------------------------------------------- /templates/checkout/cart.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/cart.tpl -------------------------------------------------------------------------------- /templates/checkout/checkout-process.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/checkout-process.tpl -------------------------------------------------------------------------------- /templates/checkout/checkout.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/checkout.tpl -------------------------------------------------------------------------------- /templates/checkout/order-confirmation.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/checkout/order-confirmation.tpl -------------------------------------------------------------------------------- /templates/cms/_partials/sitemap-nested-list.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/cms/_partials/sitemap-nested-list.tpl -------------------------------------------------------------------------------- /templates/cms/category.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/cms/category.tpl -------------------------------------------------------------------------------- /templates/cms/page.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/cms/page.tpl -------------------------------------------------------------------------------- /templates/cms/sitemap.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/cms/sitemap.tpl -------------------------------------------------------------------------------- /templates/cms/stores.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/cms/stores.tpl -------------------------------------------------------------------------------- /templates/contact.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/contact.tpl -------------------------------------------------------------------------------- /templates/customer/_partials/account-transformation-form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/_partials/account-transformation-form.tpl -------------------------------------------------------------------------------- /templates/customer/_partials/address-form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/_partials/address-form.tpl -------------------------------------------------------------------------------- /templates/customer/_partials/block-address.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/_partials/block-address.tpl -------------------------------------------------------------------------------- /templates/customer/_partials/customer-form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/_partials/customer-form.tpl -------------------------------------------------------------------------------- /templates/customer/_partials/login-form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/_partials/login-form.tpl -------------------------------------------------------------------------------- /templates/customer/_partials/my-account-links.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/_partials/my-account-links.tpl -------------------------------------------------------------------------------- /templates/customer/_partials/order-detail-no-return.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/_partials/order-detail-no-return.tpl -------------------------------------------------------------------------------- /templates/customer/_partials/order-detail-return.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/_partials/order-detail-return.tpl -------------------------------------------------------------------------------- /templates/customer/_partials/order-messages.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/_partials/order-messages.tpl -------------------------------------------------------------------------------- /templates/customer/address.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/address.tpl -------------------------------------------------------------------------------- /templates/customer/addresses.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/addresses.tpl -------------------------------------------------------------------------------- /templates/customer/authentication.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/authentication.tpl -------------------------------------------------------------------------------- /templates/customer/discount.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/discount.tpl -------------------------------------------------------------------------------- /templates/customer/guest-login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/guest-login.tpl -------------------------------------------------------------------------------- /templates/customer/guest-tracking.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/guest-tracking.tpl -------------------------------------------------------------------------------- /templates/customer/history.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/history.tpl -------------------------------------------------------------------------------- /templates/customer/identity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/identity.tpl -------------------------------------------------------------------------------- /templates/customer/my-account.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/my-account.tpl -------------------------------------------------------------------------------- /templates/customer/order-detail.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/order-detail.tpl -------------------------------------------------------------------------------- /templates/customer/order-follow.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/order-follow.tpl -------------------------------------------------------------------------------- /templates/customer/order-return.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/order-return.tpl -------------------------------------------------------------------------------- /templates/customer/order-slip.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/order-slip.tpl -------------------------------------------------------------------------------- /templates/customer/page.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/page.tpl -------------------------------------------------------------------------------- /templates/customer/password-email.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/password-email.tpl -------------------------------------------------------------------------------- /templates/customer/password-infos.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/password-infos.tpl -------------------------------------------------------------------------------- /templates/customer/password-new.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/password-new.tpl -------------------------------------------------------------------------------- /templates/customer/registration.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/customer/registration.tpl -------------------------------------------------------------------------------- /templates/errors/404.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/errors/404.tpl -------------------------------------------------------------------------------- /templates/errors/410.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/errors/410.tpl -------------------------------------------------------------------------------- /templates/errors/forbidden.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/errors/forbidden.tpl -------------------------------------------------------------------------------- /templates/errors/maintenance.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/errors/maintenance.tpl -------------------------------------------------------------------------------- /templates/errors/not-found.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/errors/not-found.tpl -------------------------------------------------------------------------------- /templates/errors/restricted-country.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/errors/restricted-country.tpl -------------------------------------------------------------------------------- /templates/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/index.tpl -------------------------------------------------------------------------------- /templates/layouts/layout-both-columns.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/layouts/layout-both-columns.tpl -------------------------------------------------------------------------------- /templates/layouts/layout-content-only.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/layouts/layout-content-only.tpl -------------------------------------------------------------------------------- /templates/layouts/layout-error.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/layouts/layout-error.tpl -------------------------------------------------------------------------------- /templates/layouts/layout-full-width.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/layouts/layout-full-width.tpl -------------------------------------------------------------------------------- /templates/layouts/layout-left-column.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/layouts/layout-left-column.tpl -------------------------------------------------------------------------------- /templates/layouts/layout-right-column.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/layouts/layout-right-column.tpl -------------------------------------------------------------------------------- /templates/page.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrestaShop/classic-theme/HEAD/templates/page.tpl --------------------------------------------------------------------------------