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
<script type="text/javascript"> | |
jQuery(window).scroll(function() { | |
jQuery('#object').each(function(){ | |
var imagePos = $(this).offset().top; | |
var topOfWindow = $(window).scrollTop(); | |
if (imagePos < topOfWindow+400) { | |
$(this).addClass("slideUp"); | |
} |
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
<section id="help" class="bg-gray"> | |
<div class="container"> | |
<h5>How you can help</h5> | |
<h2 class="sub-title">Make a difference in your community and your world.</h2> | |
<div class="panel large"> | |
<div class="span8 bg-cover" style="background: url(<?php buildon_image_path(); ?>home/help-build.jpg);"></div> | |
<div class="span4 content"> | |
<img class="icon" src="<?php echo get_stylesheet_directory_uri(); ?>/assets/images/content/home/icon-map.png" alt=""> | |
<h4>Build a Community</h4> | |
<p>Use your creativity and passion to raise awareness of the U.S. education crisis and fundraise to help end it.</p> |
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
#Step 1: commit any of your current changes on the branch you're working on. | |
#Step 2: Create a branch locally | |
git checkout -b bm-cookies | |
#Step 3: You'll be on the bm-cookies branch now. You'll want to pull from pagoda | |
git pull pagoda bm-cookies | |
#Step 4: Checkout back to your working branch | |
git checkout [[NAME OF YOUR BRANCH HERE - NO BRACKETS]] |
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><?php wp_title( '-', true, 'right' ); ?></title> | |
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,600,700,800' rel='stylesheet' type='text/css'> | |
<?php wp_head(); ?> | |
</head> | |
<body <?php body_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
function nam_redirects() | |
{ | |
if( is_page('register')) { | |
if( is_user_logged_in() ) { | |
wp_safe_redirect( '/network' ); | |
} | |
} | |
} |
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 | |
if( get_the_ID() === 9106 ) : | |
//Specific Sponsor a Mile campaign | |
else : | |
//Everything else here | |
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
.icon-upload | |
.icon-lightning | |
.icon-group | |
.icon-info | |
.icon-chain | |
.icon-heart | |
.icon-notepad | |
.icon-file | |
.icon-pencil | |
.icon-message |
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 | |
/** | |
* Plugin Name: Fifty Framework FAQs | |
* Plugin URI: http://fiftyandfifty.org | |
* Description: Build FAQs pages for your site | |
* Version: 1.0 | |
* Author: Fifty and Fifty | |
* Author URI: http://labs.fiftyandfifty.org | |
*/ |
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
/* | |
Theme Name: Natural High | |
Theme URI: http://naturalhigh.gopagoda.com | |
Author: 5ifty&5ifty | |
Author URI: fiftyandfifty.org | |
Description: Developed on Wordpress. | |
Version: 1.0 | |
*/ |