├── .gitignore ├── README.md ├── amp.php ├── composer.json ├── composer.lock ├── config.xml ├── controllers ├── front │ ├── category.php │ ├── index.php │ └── product.php └── index.php ├── index.php ├── logo.gif ├── logo.png ├── translations ├── en.php ├── fr.php ├── index.php └── pl.php └── views ├── css ├── amp.css └── index.php ├── index.php └── templates ├── front ├── category.tpl ├── category_17.tpl ├── index.php ├── product.tpl └── product_17.tpl ├── hook ├── amp_header.tpl └── index.php └── index.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | config_*.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/README.md -------------------------------------------------------------------------------- /amp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/amp.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/composer.lock -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/config.xml -------------------------------------------------------------------------------- /controllers/front/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/controllers/front/category.php -------------------------------------------------------------------------------- /controllers/front/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/controllers/front/index.php -------------------------------------------------------------------------------- /controllers/front/product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/controllers/front/product.php -------------------------------------------------------------------------------- /controllers/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/controllers/index.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/index.php -------------------------------------------------------------------------------- /logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/logo.gif -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/logo.png -------------------------------------------------------------------------------- /translations/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/translations/en.php -------------------------------------------------------------------------------- /translations/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/translations/fr.php -------------------------------------------------------------------------------- /translations/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/translations/index.php -------------------------------------------------------------------------------- /translations/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/translations/pl.php -------------------------------------------------------------------------------- /views/css/amp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/views/css/amp.css -------------------------------------------------------------------------------- /views/css/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/views/css/index.php -------------------------------------------------------------------------------- /views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/views/index.php -------------------------------------------------------------------------------- /views/templates/front/category.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/views/templates/front/category.tpl -------------------------------------------------------------------------------- /views/templates/front/category_17.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/views/templates/front/category_17.tpl -------------------------------------------------------------------------------- /views/templates/front/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/views/templates/front/index.php -------------------------------------------------------------------------------- /views/templates/front/product.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/views/templates/front/product.tpl -------------------------------------------------------------------------------- /views/templates/front/product_17.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/views/templates/front/product_17.tpl -------------------------------------------------------------------------------- /views/templates/hook/amp_header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/views/templates/hook/amp_header.tpl -------------------------------------------------------------------------------- /views/templates/hook/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/views/templates/hook/index.php -------------------------------------------------------------------------------- /views/templates/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L3o-pold/prestashopamp/HEAD/views/templates/index.php --------------------------------------------------------------------------------