Last active
December 19, 2015 11:38
-
-
Save motorcitymobi/5948685 to your computer and use it in GitHub Desktop.
Combing Zurb's Orbit with the Genesis Framework.
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 | |
/* | |
Template Name: Orbit (Foundation) | |
*/ | |
add_action( 'genesis_after', 'mobile_do_orbit_demo' ); | |
function mobile_do_orbit_demo() { ?> | |
<!-- Check for Zepto support, load jQuery if necessary --> | |
<script> | |
document.write('<script src=/js/vendor/' | |
+ ('__proto__' in {} ? 'zepto' : 'jquery') | |
+ '.js><\/script>'); | |
</script> | |
<script> | |
jQuery(document).ready(function($) { | |
$(function(){ | |
$(document).foundation(); | |
}) | |
}); | |
</script> | |
<?php | |
} | |
add_action( 'genesis_after', 'mobile_do_orbit_scripts' ); | |
function mobile_do_orbit_scripts() { | |
wp_enqueue_script( 'foundation-cloud' ); | |
wp_enqueue_script( 'orbit-cloud' ); | |
} | |
// do genesis | |
genesis(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment