0.2.8 Adding Grunt and basic Grunt SASS task

This commit is contained in:
Holger Koenemann 2015-02-06 09:38:52 +01:00
parent d551dbe389
commit b0846efaae
56 changed files with 47 additions and 8 deletions

View File

@ -5,6 +5,13 @@ Live Demo: http://holgerkoenemann.de/understrap/
Changelog
=
- **0.2.8 Feb. 6th 2015**
- Adding Grunt and Grunt SASS task
- **0.2.7 Jan. 26th 2015**
- Adding some basic theme option for the build-in slider script
- **0.2.6 Dec. 28th 2014**
- CLean up

File diff suppressed because one or more lines are too long

View File

@ -32,14 +32,16 @@
<!-- Loads slider script and settings if a widget on pos hero is published -->
<?php if ( is_active_sidebar( 'hero' ) ): ?>
<script>
jQuery(document).ready(function() {
var owl = jQuery('.owl-carousel');
owl.owlCarousel({
items:1,
loop:true,
loop:<?php echo get_theme_mod( 'understrap_theme_slider_loop_setting' );?>,
autoplay:true,
autoplayTimeout:5000,
autoplayTimeout:<?php echo get_theme_mod( 'understrap_theme_slider_time_setting' );?>,
animateOut: 'fadeOut',
animateIn: 'fadeIn',
nav: false,

View File

@ -18,6 +18,40 @@ function understrap_customize_register( $wp_customize ) {
}
add_action( 'customize_register', 'understrap_customize_register' );
function understrap_theme_customize_register( $wp_customize ) {
$wp_customize->add_section( 'understrap_theme_slider_options', array(
'title' => __( 'Slider Settings', 'understrap' )
) );
$wp_customize->add_setting( 'understrap_theme_slider_time_setting', array(
'default' => '5000'
) );
$wp_customize->add_control( 'understrap_theme_slider_time', array(
'label' => __( 'Slider Time (in ms)', 'understrap' ),
'section' => 'understrap_theme_slider_options',
'type' => 'text',
'settings' => 'understrap_theme_slider_time_setting'
) );
$wp_customize->add_setting( 'understrap_theme_slider_loop_setting', array(
'default' => 'true'
) );
$wp_customize->add_control( 'understrap_theme_loop', array(
'label' => __( 'Loop Slider Content', 'understrap' ),
'section' => 'understrap_theme_slider_options',
'type' => 'radio',
'choices' => array(
'true' => 'yes',
'false' => 'no',
),
'settings' => 'understrap_theme_slider_loop_setting'
) );
}
add_action( 'customize_register', 'understrap_theme_customize_register' );
/**
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
*/

0
sass/jasny-offcanvas/_alerts-fixed.scss Normal file → Executable file
View File

0
sass/jasny-offcanvas/_button-labels.scss Normal file → Executable file
View File

0
sass/jasny-offcanvas/_fileinput.scss Normal file → Executable file
View File

0
sass/jasny-offcanvas/_grid-container-smooth.scss Normal file → Executable file
View File

0
sass/jasny-offcanvas/_nav-tab-alignment.scss Normal file → Executable file
View File

0
sass/jasny-offcanvas/_navmenu.scss Normal file → Executable file
View File

0
sass/jasny-offcanvas/_offcanvas.scss Normal file → Executable file
View File

0
sass/jasny-offcanvas/_rowlink.scss Normal file → Executable file
View File

0
sass/jasny-offcanvas/_variables.scss Normal file → Executable file
View File

0
sass/jasny-offcanvas/jasny-bootstrap.scss Normal file → Executable file
View File

0
sass/owlcarousel-slider/_mixins.scss Normal file → Executable file
View File

0
sass/owlcarousel-slider/_theme.scss Normal file → Executable file
View File

0
sass/owlcarousel-slider/owl.animate.scss Normal file → Executable file
View File

0
sass/owlcarousel-slider/owl.autoheight.scss Normal file → Executable file
View File

0
sass/owlcarousel-slider/owl.carousel.scss Normal file → Executable file
View File

0
sass/owlcarousel-slider/owl.lazyload.scss Normal file → Executable file
View File

0
sass/owlcarousel-slider/owl.theme.default.scss Normal file → Executable file
View File

0
sass/owlcarousel-slider/owl.theme.green.scss Normal file → Executable file
View File

0
sass/owlcarousel-slider/owl.video.scss Normal file → Executable file
View File

0
sass/underscores/_reset.scss Normal file → Executable file
View File

0
sass/underscores/elements/_elements.scss Normal file → Executable file
View File

0
sass/underscores/elements/_lists.scss Normal file → Executable file
View File

0
sass/underscores/elements/_tables.scss Normal file → Executable file
View File

0
sass/underscores/forms/_buttons.scss Normal file → Executable file
View File

0
sass/underscores/forms/_fields.scss Normal file → Executable file
View File

0
sass/underscores/forms/_forms.scss Normal file → Executable file
View File

0
sass/underscores/layout/_content-sidebar.scss Normal file → Executable file
View File

0
sass/underscores/layout/_sidebar-content.scss Normal file → Executable file
View File

0
sass/underscores/media/_captions.scss Normal file → Executable file
View File

0
sass/underscores/media/_galleries.scss Normal file → Executable file
View File

0
sass/underscores/media/_media.scss Normal file → Executable file
View File

0
sass/underscores/mixins/_mixins-master.scss Normal file → Executable file
View File

0
sass/underscores/modules/_accessibility.scss Normal file → Executable file
View File

0
sass/underscores/modules/_alignments.scss Normal file → Executable file
View File

0
sass/underscores/modules/_clearings.scss Normal file → Executable file
View File

0
sass/underscores/modules/_infinite-scroll.scss Normal file → Executable file
View File

0
sass/underscores/navigation/_links.scss Normal file → Executable file
View File

0
sass/underscores/navigation/_menus.scss Normal file → Executable file
View File

0
sass/underscores/navigation/_navigation.scss Normal file → Executable file
View File

0
sass/underscores/site/_site.scss Normal file → Executable file
View File

0
sass/underscores/site/primary/_asides.scss Normal file → Executable file
View File

0
sass/underscores/site/primary/_comments.scss Normal file → Executable file
View File

0
sass/underscores/site/primary/_posts-and-pages.scss Normal file → Executable file
View File

0
sass/underscores/site/secondary/_widgets.scss Normal file → Executable file
View File

0
sass/underscores/typography/_copy.scss Normal file → Executable file
View File

0
sass/underscores/typography/_headings.scss Normal file → Executable file
View File

0
sass/underscores/typography/_typography.scss Normal file → Executable file
View File

0
sass/underscores/variables-site/_colors.scss Normal file → Executable file
View File

0
sass/underscores/variables-site/_structure.scss Normal file → Executable file
View File

0
sass/underscores/variables-site/_typography.scss Normal file → Executable file
View File

0
sass/underscores/variables-site/_variables-site.scss Normal file → Executable file
View File

View File

@ -4,7 +4,7 @@ Theme URI: http://holgerkoenemann.de/understrap
Author: Holger Koenemann
Author URI: http://www.holgerkoenemann.de
Description: Combination of Automattic´s _s theme and Bootstrap SASS
Version: 0.2.6
Version: 0.2.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap