resorting dev assets
This commit is contained in:
parent
36894c0f65
commit
2861f7501b
19
README.md
19
README.md
|
@ -95,9 +95,9 @@ Some basics about the SCSS and CSS files comes with UnderStrap:
|
||||||
- The theme.css file in /css/ subdirectory provides all styles. It is composed by five different SCSS sets and one variables file from /sass/theme.scss:
|
- The theme.css file in /css/ subdirectory provides all styles. It is composed by five different SCSS sets and one variables file from /sass/theme.scss:
|
||||||
|
|
||||||
- 1 "theme/theme_variables"; // <--------- Add your variables into this file. Also add variables to overwrite Bootstrap or UnderStrap variables here
|
- 1 "theme/theme_variables"; // <--------- Add your variables into this file. Also add variables to overwrite Bootstrap or UnderStrap variables here
|
||||||
- 2 "../bower_components/bootstrap-sass/assets/stylesheets/bootstrap"; // <--------- All the Bootstrap stuff - Don´t edit this!
|
- 2 "../src/bootstrap-sass/assets/stylesheets/bootstrap"; // <--------- All the Bootstrap stuff - Don´t edit this!
|
||||||
- 3 "understrap/understrap"; // <--------- Some basic WordPress stylings and needed styles to combine Boostrap and Underscores
|
- 3 "understrap/understrap"; // <--------- Some basic WordPress stylings and needed styles to combine Boostrap and Underscores
|
||||||
- 4 "../bower_components/fontawesome/scss/font-awesome"; // <--------- Font Awesome Icon styles
|
- 4 "../src/fontawesome/scss/font-awesome"; // <--------- Font Awesome Icon styles
|
||||||
|
|
||||||
// Any additional imported files //
|
// Any additional imported files //
|
||||||
- 5 "theme/theme"; // <--------- Add your styles into this file
|
- 5 "theme/theme"; // <--------- Add your styles into this file
|
||||||
|
@ -113,6 +113,21 @@ Installation
|
||||||
- Go to Appearance -> Themes
|
- Go to Appearance -> Themes
|
||||||
- Activate the UnderStrap theme
|
- Activate the UnderStrap theme
|
||||||
|
|
||||||
|
Developing with NPM, Bower, Gulp and SASS
|
||||||
|
=
|
||||||
|
- Make sure you have installed Node.js and Bower on your computer globally
|
||||||
|
- Then open your terminal and browse to the location of your UnderStrap copy
|
||||||
|
- Run:
|
||||||
|
$ npm install
|
||||||
|
than:
|
||||||
|
$ bower install
|
||||||
|
and finally:
|
||||||
|
$ gulp copy-assets
|
||||||
|
|
||||||
|
To work and compile your SASS files on the fly start:
|
||||||
|
$ gulp watch
|
||||||
|
|
||||||
|
|
||||||
How to use the build-in Widget Slider?
|
How to use the build-in Widget Slider?
|
||||||
=
|
=
|
||||||
The frontpage slider is widget driven. Simply add more than one widget to widget position "Hero".
|
The frontpage slider is widget driven. Simply add more than one widget to widget position "Hero".
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
// Defining base pathes
|
// Defining base pathes
|
||||||
var basePaths = {
|
var basePaths = {
|
||||||
bower: './bower_components/',
|
bower: './bower_components/',
|
||||||
dev: './_dev/'
|
dev: './src/'
|
||||||
};
|
};
|
||||||
|
|
||||||
// Defining requirements
|
// Defining requirements
|
||||||
|
|
|
@ -30,11 +30,11 @@ Import all needed 3rd party sass files plus your own style and variables
|
||||||
|
|
||||||
// @import "../bower_components/_s/sass/style";
|
// @import "../bower_components/_s/sass/style";
|
||||||
@import "theme/theme_variables"; // <--------- Add your variables into this file. Also add variables to overwrite Bootstrap or UnderStrap variables here
|
@import "theme/theme_variables"; // <--------- Add your variables into this file. Also add variables to overwrite Bootstrap or UnderStrap variables here
|
||||||
@import "../_dev/sass/bootstrap-sass/bootstrap";
|
@import "../src/sass/bootstrap-sass/bootstrap";
|
||||||
@import "understrap/understrap";
|
@import "understrap/understrap";
|
||||||
@import "../_dev/sass/fontawesome/font-awesome";
|
@import "../src/sass/fontawesome/font-awesome";
|
||||||
@import "../_dev/css/owl.carousel.min.css";
|
@import "../src/css/owl.carousel.min.css";
|
||||||
@import "../_dev/css/owl.theme.default.min.css";
|
@import "../src/css/owl.theme.default.min.css";
|
||||||
|
|
||||||
|
|
||||||
// Any additional imported files //
|
// Any additional imported files //
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue