Files & Structure
.
├── css
│ ├── bootstrap.min.css
│ ├── owl-2.3.2
│ │ ├── owl.carousel.min.css
│ │ └── owl.theme.default.min.css
│ ├── theme_1.css
│ ├── theme_2.css
│ ├── theme_3.css
│ ├── theme_4.css
│ └── theme_5.css
├── documentation
├── img
│ ├── 1
│ ├── 2
│ ├── 3
│ ├── 4
│ └── 5
├── index.html
├── js
│ ├── bootstrap.min.js
│ ├── jquery.min.js
│ ├── main.js
│ ├── owl.carousel.min.js
│ └── popper.min.js
├── scss
│ ├── _base.scss
│ ├── _responsive.scss
│ ├── partials
│ │ ├── _colors-old.scss
│ │ ├── _colors.scss
│ │ ├── _keyframes.scss
│ │ ├── _mixins.scss
│ │ └── _type.scss
│ ├── theme_1
│ │ ├── _responsive.scss
│ │ └── _sections.scss
│ ├── theme_1.scss
│ ├── theme_2
│ │ ├── _responsive.scss
│ │ └── _sections.scss
│ ├── theme_2.scss
│ ├── theme_3
│ │ ├── _components.scss
│ │ ├── _responsive.scss
│ │ └── _sections.scss
│ ├── theme_3.scss
│ ├── theme_4
│ │ ├── _components.scss
│ │ ├── _responsive.scss
│ │ └── _sections.scss
│ ├── theme_4.scss
│ ├── theme_5
│ │ ├── _components.scss
│ │ ├── _responsive.scss
│ │ └── _sections.scss
│ └── theme_5.scss
├── theme_2.html
├── theme_3.html
├── theme_4.html
└── theme_5.htmlLast updated