This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp') ; | |
var sass = require('gulp-sass') ; | |
var watch = require('gulp-watch') ; | |
var sourcemaps = require('gulp-sourcemaps') ; | |
var browserSync = require('browser-sync'); | |
var concat = require('gulp-concat'); | |
var rename = require('gulp-rename'); | |
var uglify = require('gulp-uglify'); | |
var combiner = require('stream-combiner2'); | |
var util = require('gulp-util'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp') ; | |
var connect = require('gulp-connect-php'); | |
var sass = require('gulp-sass') ; | |
var watch = require('gulp-watch') ; | |
var sourcemaps = require('gulp-sourcemaps') ; | |
var browserSync = require('browser-sync'); | |
var concat = require('gulp-concat'); | |
var rename = require('gulp-rename'); | |
var uglify = require('gulp-uglify'); | |
var combiner = require('stream-combiner2'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp') ; | |
var sass = require('gulp-sass') ; | |
var watch = require('gulp-watch') ; | |
var sourcemaps = require('gulp-sourcemaps') ; | |
var browserSync = require('browser-sync'); | |
var concat = require('gulp-concat'); | |
var rename = require('gulp-rename'); | |
var uglify = require('gulp-uglify'); | |
gulp.task('watch', function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp') ; | |
var sass = require('gulp-sass') ; | |
var watch = require('gulp-watch') ; | |
var sourcemaps = require('gulp-sourcemaps') ; | |
var browserSync = require('browser-sync'); | |
var concat = require('gulp-concat'); | |
var rename = require('gulp-rename'); | |
var uglify = require('gulp-uglify'); | |
gulp.task('watch', function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object(WP_Post)[1524] | |
public 'ID' => int 731 | |
public 'post_author' => string '3' (length=1) | |
public 'post_date' => string '2016-05-19 04:49:36' (length=19) | |
public 'post_date_gmt' => string '2016-05-19 04:49:36' (length=19) | |
public 'post_content' => string '' (length=0) | |
public 'post_title' => string 'Bubble Gun' (length=10) | |
public 'post_excerpt' => string '' (length=0) | |
public 'post_status' => string 'publish' (length=7) | |
public 'comment_status' => string 'closed' (length=6) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
videoControlContainer.on( 'click', function() { | |
if (bubblesVideo.prop('muted') == true) { | |
console.log("clicked the control"); | |
bubblesVideo.prop('muted', false) ; | |
videoControlContainer.css('background-position', '') | |
.css('background-position-y', '0') ; | |
} else if (bubblesVideo.prop('muted') == false) { | |
console.log("clicked the control"); | |
bubblesVideo.prop('muted', true) ; | |
videoControlContainer.css('background-position', '') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp') ; | |
var sass = require('gulp-sass') ; | |
var watch = require('gulp-watch') ; | |
var sourcemaps = require('gulp-sourcemaps') ; | |
var browserSync = require('browser-sync'); | |
gulp.task('watch', function () { | |
gulp.watch('./src/sass/**.scss', ['sass']); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp') ; | |
var sass = require('gulp-sass') ; | |
var watch = require('gulp-watch') ; | |
var sourcemaps = require('gulp-sourcemaps'); | |
var browserSync = require('browser-sync'); | |
gulp.task('sass', function () { | |
return gulp.src('./src/sass/**.scss') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$args = array( | |
'posts_per_page' => 9 | |
) ; | |
$my_query = new WP_Query($args) ;?> | |
<section id="" class="container-fluid"> | |
<?php $count = 0 ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container-fluid"> | |
<?php | |
$args = array( | |
'posts_per_page' => 9 | |
) ; | |
$my_posts = get_posts($args) ; | |
$chunks = array_chunk( $my_posts , 3 ) ; | |
$total_count = count($chunks) ; |