Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Merge branch 'sass-conversion'
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmbacon committed Jul 17, 2014
2 parents 78dd962 + 886fce3 commit 96c500b
Show file tree
Hide file tree
Showing 3 changed files with 6,708 additions and 32 deletions.
9 changes: 8 additions & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,16 @@ function cs_widgets_init() {
* Enqueue scripts and styles.
*/
function cs_scripts() {

// Without these random enqueue styles, the theme styles don't load for some reason. ????????????
wp_enqueue_style( 'xxxx',get_template_directory_uri() . '/aaaa.css' );
wp_enqueue_style( 'bbbb', get_stylesheet_uri(),array('xxxx') );

/*
wp_enqueue_style( 'cs-bootstrap-css',get_template_directory_uri() . '/bootstrap/css/bootstrap.min.css' );
wp_enqueue_style( 'cs-style', get_stylesheet_uri(),array('cs-bootstrap-css') );

*/

wp_enqueue_script( 'cs-bootstrap-js', get_template_directory_uri() . '/bootstrap/js/bootstrap.min.js', array( 'jquery' ));
wp_enqueue_script( 'cs-respond-js', get_template_directory_uri() . '/bootstrap/js/respond.js', array( 'jquery' ));
wp_enqueue_script( 'cs-modernizr', get_template_directory_uri() . '/js/cs-modernizr.js', array( 'jquery' ));
Expand Down
Loading

0 comments on commit 96c500b

Please sign in to comment.