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 browserify = require('browserify'); | |
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 terser = require('gulp-terser'); | |
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
function gloria_publish_video_gallery() { | |
ob_start() ; | |
// $test_string = '<h1>Got To Test String</h1>' ; | |
// echo $test_string ; | |
$test_string = include (get_stylesheet_directory() . '/inc/buzz-slideshow-videos-gallery-template.php'); | |
// echo "<h1>the other test string</h2>" ; | |
echo $test_string ; |
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'); |
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
<!DOCTYPE html> | |
<html lang="en-US"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="generator" content="emacs" /> | |
<title></title> | |
<link rel="stylesheet" href="css/owl.carousel.css" type="text/css" /> | |
<link rel="stylesheet" href="css/owl.theme.default.css" type="text/css" /> | |
<link rel="stylesheet" href="css/test5.css" type="text/css" /> |
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="bsa-container-fluid"> | |
<header class="question-header question-header-1"> | |
<h2>Who do you think should be Prime Minister Of Aotearoa?</h2> | |
</header> | |
</div> | |
<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]"> | |
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="bsa-container-fluid"> | |
<header class="question-header question-header-2" style="width: 100%; margin-bottom: 30px ; "> | |
<h2>Lets find out about you</h2> | |
</header> | |
<div class="bsa-row"> | |
<div class="bsa-col-xs-12"> | |
<h3>Full Name</h3> |
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="bsa-container-fluid"> | |
<header class="question-header question-header-2"> | |
<h2>If you were the boss of New Zealand, which of these options do you think is the <span>most important</span> thing we could do as a country?</h2> | |
</header> | |
</div> | |
<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]"> | |
<div class="frm_opt_container"> |
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="bsa-container-fluid"> | |
<header class="question-header question-header-2"> | |
<h2>If you were the boss of New Zealand, which of these options do you think is the <span>most important</span> thing we could do as a country?</h2> | |
</header> | |
</div> | |
<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]"> | |
<div class="frm_opt_container"> |
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 | |
$people = new WP_Query( array( | |
'post_type' => 'person', | |
'posts_per_page' => -1, | |
'orderby' => 'menu_order', | |
'order' => 'asc', | |
) ); | |
if ( $people->have_posts() ) : ?> | |
<div class="intra-nav-wrap" style="margin-top: 1.5em; clear: both; width: 100%; height: 42px;"> |
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
$ = jQuery.noConflict() ; | |
/** | |
* equalize heights on the 'our people' page | |
*/ | |
function equalizeHeights(targets ) { | |
console.debug( 'how many targets? ' + targets.length ) ; | |
var heights = [] ; |