resorting dev assets

This commit is contained in:
Holger Könemann 2016-03-20 10:40:38 +01:00
parent 36894c0f65
commit 2861f7501b
133 changed files with 22 additions and 7 deletions

View File

@ -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:
- 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
- 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 //
- 5 "theme/theme"; // <--------- Add your styles into this file
@ -113,6 +113,21 @@ Installation
- Go to Appearance -> Themes
- 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?
=
The frontpage slider is widget driven. Simply add more than one widget to widget position "Hero".

View File

@ -1,7 +1,7 @@
// Defining base pathes
var basePaths = {
bower: './bower_components/',
dev: './_dev/'
dev: './src/'
};
// Defining requirements

View File

@ -30,11 +30,11 @@ Import all needed 3rd party sass files plus your own style and variables
// @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 "../_dev/sass/bootstrap-sass/bootstrap";
@import "../src/sass/bootstrap-sass/bootstrap";
@import "understrap/understrap";
@import "../_dev/sass/fontawesome/font-awesome";
@import "../_dev/css/owl.carousel.min.css";
@import "../_dev/css/owl.theme.default.min.css";
@import "../src/sass/fontawesome/font-awesome";
@import "../src/css/owl.carousel.min.css";
@import "../src/css/owl.theme.default.min.css";
// Any additional imported files //

Some files were not shown because too many files have changed in this diff Show More