Developing Magento 2 templates
Magento works with .phtml
template files to generate the view layer for the users. Files with the .phtml
extension contain both embedded HTML5 as well as PHP programming logic to render all page content using Magento processing. The modules and themes in Magento have their specific groups of .phtml
files to show data to the users.
In an order to strengthen these concepts, it's time to implement some template development on the BookStore theme project by following these instructions:
Create the
Magento_Catalog
directory under theapp/design/frontend/Packt/bookstore
directory.Copy the
vendor/magento/module_catalog/view/frontend/templates
directory toapp/design/frontend/Packt/bookstore/Magento_Catalog
.Open the
app/design/frontend/Packt/bookstore/Magento_Catalog/templates/product/view/addto.phtml
file in your favorite code editor.Go to line 17 and enter the following code:
<div><h2>Buy in BookStore!!!</h2></div>
Save the file.
Delete the...