File Structure
Once you have downloaded the archive and opened it, you will find the following structure:
.
├── template.html
├── styleguide.html
├── shop.html
├── navigation.html
├── media.html
├── index.html
├── headers.html
├── forms.html
├── commerce.html
├── blog.html
├── assets
│ ├── vendor
│ │ ├── jquery
│ │ └── bootstrap
│ │ └── v4
│ │ ├── js
│ │ │ ├── popper.min.js
│ │ │ ├── manifest.min.js
│ │ │ └── manifest.js
│ │ └── css
│ │ ├── manifest.min.css
│ │ └── manifest.css
│ ├── start-sass.bat
│ ├── scss
│ │ ├── sections
│ │ │ ├── _presentation.scss
│ │ │ ├── _media-cards.scss
│ │ │ ├── _headers.scss
│ │ │ ├── _forms.scss
│ │ │ ├── _footer.scss
│ │ │ ├── _commerce-sections.scss
│ │ │ ├── _commerce-cards.scss
│ │ │ ├── _cards.scss
│ │ │ ├── _blog-cards.scss
│ │ │ └── _base-cards.scss
│ │ ├── presentation.scss
│ │ ├── partials
│ │ │ ├── _variables.scss
│ │ │ ├── _responsive.scss
│ │ │ ├── _mixins.scss
│ │ │ ├── _keyframes.scss
│ │ │ └── _colors.scss
│ │ ├── pages
│ │ │ ├── _responsive.scss
│ │ │ ├── _commerce.scss
│ │ │ └── _article.scss
│ │ ├── grace.scss
│ │ └── components
│ │ ├── _typography.scss
│ │ ├── _select.scss
│ │ ├── _pagination.scss
│ │ ├── _nouislider.scss
│ │ ├── _navbar.scss
│ │ ├── _inputs.scss
│ │ ├── _buttons.scss
│ │ └── _badge.scss
│ ├── media
│ │ ├── img
│ │ └── audio
│ ├── js
│ │ ├── nouislider.min.js
│ │ └── grace.js
│ ├── fonts
│ │ ├── icons.css
│ │ └── fonts
│ └── css
│ ├── presentation.css
│ └── grace.css
├── article.html
└── README.md
Last updated