Skip to content

Instantly share code, notes, and snippets.

@motorcitymobi
Created July 8, 2013 13:19
Show Gist options
  • Save motorcitymobi/5948713 to your computer and use it in GitHub Desktop.
Save motorcitymobi/5948713 to your computer and use it in GitHub Desktop.
Combining Zurb's Magellan with the Genesis Framework.
<?php
/*
Template Name: Magellan (Foundation)
*/
add_action( 'genesis_after', 'mobile_do_magellan_demo' );
function mobile_do_magellan_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();
activeClass: 'active';
})
});
</script>
<?php
}
add_action( 'genesis_after', 'mobile_do_magellan_scripts' );
function mobile_do_magellan_scripts() {
wp_enqueue_script( 'foundation-cloud' );
wp_enqueue_script( 'magellan-cloud' );
}
// do genesis
genesis();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment