I am very new to Magento 2.1.0. but want to install HTML theme (theme integration). When I deploy static content and also in pub folder I can see my .css file under css/source folder.
My theme Structure: <VendorName>/<themeName>/web/css/source.
and after that include my CSS and JS files into the Magento_Theme/layout/default_head_blocks.xml file. Below is my code:
**default_head_blocks.xml**
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<css src="css/source/bootstrap.min.css" />
<css src="css/source/font-awesome.min.css"/>
<css src="css/source/slick.css"/>
<css src="css/source/style.css"/>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/scripts.js"></script>
<script src="js/slick.min.js"></script>
</head>
</page>
I flush the cache, deploy the static content but when I see view source in the browser I am not able to my CSS and js file.
So can anyone help me?
Magento ver:2.1.0
Any kind of help will appreciative.
