src/
├── assets/
├── |-- css/
| |-- |-- icons.css
| |-- |-- icons.min.css
| |-- |-- icons.min.css.map
| |-- |-- styles.css
| |-- |-- styles.min.css
| |-- |-- styles.min.css.map
├── |-- icon-fonts/
| |-- |-- bootstrap-icons/
| |-- |-- boxicons/
| |-- |-- feather/
| |-- |-- line-awesome/
| |-- |-- RemixIcons/
| |-- |-- tabler-icons/
├── |-- img/
├── |-- js/
├── |-- scss/
| |-- |-- bootstrap/
| |-- |-- custom/
| |-- |-- menu-styles/
| |-- |-- pages/
| |-- |-- util/
| |-- |-- switcher/
| |-- |-- _variables.scss
| |-- |-- _icons.scss
| |-- |-- styles.scss
├── html/
| |-- partials/
| |-- |-- commonjs.html
| |-- |-- custom_switcherjs.html
| |-- |-- footer.html
| |-- |-- header.html
| |-- |-- headersearch_modal.html
| |-- |-- loader.html
| |-- |-- mainhead.html
| |-- |-- page-header.html
| |-- |-- sidebar.html
| |-- |-- switcher.html
esbuild.config.js
package.json
package-lock.json
Synto - Bootstrap CSS Admin Dashboard Template /
: Root template folder contain all html, js, css, scss, images
and other files.
assets/
: Folder contain all the Synto Template assets which has css, js, scss, and images.
css/
: Folder contain assets which has complete styles.
styles.css
: Main style sheet for templateicon-fonts/
: Folder contain all types of icons which is used in this template.
img/
: Template images.
js/
: Folder contain all the template pages js files.
scss/
: Folder contain all pages scss files and all plugins scss files also included.
html
: All HTML Pages.Partials/
:
1. This folder have all common html files which we commonly used in all html pages. If you want to add content which you need in all html pages you just create new file and add content to that. No need to add that whole content to every page, you just add that link into all html pages.
2. Import that created file link into all html pages with @SPK@include("partials/sample.html")
Note: These files are used for only src folder not for dist folder users.
esbuild.config.js
: esbuild.config tasks js file.package.json
: package json file.Note: If you want to use only CSS format then you should follow below process.
Step-1: Remove complete src folder.
Step-2: Remove "esbuild.config.js", "package.json", "package-lock.json" files.
Step-3: You can use only dist folder,if you dont want to use scss.