├── README.md
├── composer.json
├── modman
└── src
├── Magento_Catalog
└── web
│ └── images
│ └── product
│ └── placeholder
│ └── image.jpg
├── Magento_Checkout
└── layout
│ └── checkout_cart_index.xml
├── Magento_Email
├── email
│ ├── footer.html
│ └── header.html
└── web
│ └── logo_email.png
├── Magento_Theme
├── layout
│ ├── default.xml
│ └── default_head_blocks.xml
└── web
│ └── favicon.ico
├── composer.json
├── etc
└── view.xml
├── i18n
└── en_US.csv
├── media
└── preview.jpg
├── registration.php
├── requirejs-config.js
├── theme.xml
└── web
├── css
└── source
│ ├── _extend.less
│ └── _theme.less
├── images
└── logo.svg
└── js
└── scripts.js
/README.md:
--------------------------------------------------------------------------------
1 | # Magento 2 Starter Theme
2 |
3 | ## Overview
4 | This theme is boilerplate/starter theme for Magento 2 based on luma.
5 |
6 | ## Features
7 | * Coming soon
8 |
9 | ## CheatSheet
10 | Responsive Media Queries
11 | [https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/responsive-web-design/rwd_css.html](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/responsive-web-design/rwd_css.html)
12 |
13 | ## Installation
14 |
15 | ### 1 Using Composer
16 | ```
17 | composer config repositories.magepsychostartertheme git git@github.com:MagePsycho/magento2-starter-theme
18 | composer require magepsycho/magento2-starter-theme:dev-master
19 | ```
20 |
21 | ### 2 Using Modman
22 | ```
23 | modman init
24 | modman clone git@github.com:MagePsycho/magento2-starter-theme.git
25 | ```
26 |
27 | ### 3 Using Zip File
28 | * Download the [Extension Zip File](https://github.com/MagePsycho/magento2-starter-theme/archive/master.zip)
29 | * Extract & upload the files to `/path/to/magento2/app/design/frontend/MagePsycho/default/`
30 |
31 | After installation by either means, enable the extension by running following commands (from root of Magento2 installation):
32 | ```
33 | php bin/magento module:enable MagePsycho_Easypathhints --clear-static-content
34 | php bin/magento setup:upgrade
35 | php bin/magento cache:flush
36 | ```
37 | [Click here to read more on module packaging, installation & activation in Magento 2](http://www.blog.magepsycho.com/install-magento-2-module-from-github-or-bitbucket-repository-using-composer/)
38 |
39 |
40 | ## Screenshots
41 | ...
42 |
43 | ## Utility Extensions
44 | After starter theme installation, you may also like to install
45 | - https://github.com/MagePsycho/magento2-easy-template-path-hints
46 |
47 | ## Changelog
48 | ...
49 |
50 |
51 | ## Need Support?
52 | If you encounter any problems or bugs, please create an issue on [GitHub](https://github.com/MagePsycho/magento2-starter-theme/issues).
53 | OR
54 | You can send an email to magepsycho[at]gmail.com OR submit the [Contact Us](https://www.magepsycho.com/contact) form in case you need any kind of assistance, support and quotation.
55 |
56 | ## Contribution
57 | Any contribution to the development of Magento 2 Easy Template Path Hints is highly welcome.
58 | The best possibility to provide any code is to open a [pull request on GitHub](https://github.com/MagePsycho/magento2-starter-theme/pulls).
59 |
60 |
61 | ## References
62 | ### Tutorials
63 |
64 | * https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/theme-best-practice.html
65 | * https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/themes/theme-overview.html (All Chapters)
66 | * https://jamersan.com/lets-get-started-theming-magento-2-part-1/
67 | * https://jamersan.com/super-guide-theming-magento-2-part-2-3/
68 | * https://jamersan.com/super-guide-theming-magento-2-part-3-3/
69 | * https://www.classyllama.com/blog/a-look-at-css-and-less-in-magento-2
70 | * https://inchoo.net/magento-2/working-with-css-in-your-first-magento-2-project/
71 | * https://github.com/daniDLL/magento2-frontend
72 | * https://www.youtube.com/playlist?list=PLwcl8DqLMv9f6Ygxgg-_Vk-UdY9FDhpQ_
73 |
74 | ### Themes
75 |
76 | * https://github.com/DivanteLtd/magento2-rapid-theme
77 | * https://github.com/rocketweb-fed/magento2-theme-prime
78 | * https://github.com/SnowdogApps/magento2-alpaca-theme
79 | * https://github.com/studioemma/magento2-theme-optimus
80 | * https://github.com/thebreakfastcowboy/ibec-magento2-theme
81 | * https://github.com/webgriffe/theme-bootstrap
82 | * https://github.com/czone-tech/magento2-theme-fresh
83 | * https://github.com/mcspronko/magento-2-pronko-consulting-theme
84 | * https://github.com/SundialBrands/SheaMoisture2.0-Magento2-Theme
85 | * https://github.com/swissup/theme-frontend-absolute
86 | * https://github.com/ubertheme/magento2_free_theme_trex
87 | * https://github.com/elevinskii/magento2-theme-deepfish
88 | * https://github.com/MykolajKrusser/magento2-theme
89 |
90 |
91 |
92 |
--------------------------------------------------------------------------------
/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "MagePsycho/default",
3 | "description": "Magento 2 Starter Theme",
4 | "type": "magento2-theme",
5 | "version": "1.0.0",
6 | "require": {
7 | "magento/theme-frontend-luma": "*",
8 | "magento/framework": "*"
9 | },
10 | "authors": [
11 | {
12 | "name": "Raj KB",
13 | "email": "magepsycho@gmail.com",
14 | "homepage": "https://www.magepsycho.com"
15 | }
16 | ],
17 | "license": [
18 | "OSL-3.0"
19 | ],
20 | "autoload": {
21 | "files": [
22 | "registration.php"
23 | ]
24 | }
25 | }
--------------------------------------------------------------------------------
/modman:
--------------------------------------------------------------------------------
1 | src/ app/design/frontend/MagePsycho/default/
--------------------------------------------------------------------------------
/src/Magento_Catalog/web/images/product/placeholder/image.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MagePsycho/magento2-starter-theme/8a93c5687dd057b3774ddfbadc014ab5714ba323/src/Magento_Catalog/web/images/product/placeholder/image.jpg
--------------------------------------------------------------------------------
/src/Magento_Checkout/layout/checkout_cart_index.xml:
--------------------------------------------------------------------------------
1 |
2 |
{{trans "Thank you, %store_name" store_name=$store.getFrontendName()}}!
18 |
33 |
|
26 | -------------------------------------------------------------------------------- /src/Magento_Email/email/header.html: -------------------------------------------------------------------------------- 1 | 7 | 8 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 25 | 26 |