Skip to content

Instantly share code, notes, and snippets.

View johnReeve's full-sized avatar

John Reeve johnReeve

View GitHub Profile
<?php
/**
* Here is some functionality specific to the contact page.
*
*/
class Prep_Contact_Page {
@johnReeve
johnReeve / .gitignore
Created July 31, 2015 17:41
WPE root git ignore
.idea/
.gitattributes
.htaccess
/index.php
/wp-content/index.php
/wp-content/themes/index.php
last-mod
license.txt
readme.html
$('.gallery').on('mouseenter', 'li', function (){
$(this).removeClass('greyedout');
});
$('.gallery').on('mouseout', 'li', function (){
$(this).removeClass('greyedout');
});
@johnReeve
johnReeve / gist:9244010
Last active August 29, 2015 13:56
Sample Bootstrap Collapse
<a data-toggle="collapse" href="#theExtraBioInformation">
Read more
</a>
<div id="theExtraBioInformation" class="panel-collapse collapse">
<div class="panel-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>