A Pen by Ash Whiting on CodePen.
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"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Back to Top</title> | |
<!-- Stylesheets --> | |
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css' /> | |
<!-- Scripts --> |
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( | |
'post_type' => 'saturday', | |
'posts_per_page' => -1, | |
'orderby' => 'menu_order', | |
'order' => 'ASC', | |
'tax_query' => array( | |
'relation' => 'AND', | |
array( |
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 | |
global $post; | |
$trm = get_post_type($post); | |
$taxonomies = get_object_taxonomies($trm); | |
$terms = wp_get_object_terms( $post->ID, $taxonomies[0] ); | |
foreach( $terms as $term ): | |
$term_names[] = $term->name; |
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 ( window, document, undefined ) { | |
/* | |
* Grab all iframes on the page or return | |
*/ | |
var iframes = document.getElementsByTagName( 'iframe' ); | |
/* | |
* Loop through the iframes array | |
*/ |
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
/* Start: Recommended Isotope styles */ | |
/**** Isotope Filtering ****/ | |
.isotope-item { | |
z-index: 2; | |
} | |
.isotope-hidden.isotope-item { |
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
http://sinatraonstage.com/ | |
http://sunnyafternoon.com | |
http://arcelormittalorbit.com | |
http://www.thecreativepartnership.co.uk/ | |
http://www.love39steps.com/ | |
http://beautifulmusical.co.uk/ | |
http://www.harrypottertheplay.com/ | |
http://motownthemusical.co.uk | |
http://www.funnygirlthemusical.co.uk | |
http://www.shaftesburytheatre.com/ |
Narrative photo project created with Foliodot (https://foliodot.com/) website starter template. All images: https://unsplash.com/
A Pen by Ash Whiting on CodePen.
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
// Useful breakpoint mixins | |
// Media queries (max-width); | |
// @include respond-to('phone'); | |
$breakpoints-max: ( | |
'phone' : ( max-width: $screen-phone ), | |
'phone-large' : ( max-width: $screen-xs-max ), | |
'tablet' : ( max-width: 1024px ), | |
'small' : ( max-width: $screen-sm-max ), |