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 | |
add_action( 'wp_enqueue_scripts', 'wps_load_scripts' ); | |
/** | |
* Enqueue Isotope | |
* For commercially developed child themes, you must obtain a license | |
* from isotope.metafizzy.co for approx. $25. | |
* | |
* @author Travis Smith | |
* @link http://wpsmith.net |
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
d(get_categories()); | |
d(get_terms()); |
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 <?php language_attributes(); ?>> | |
<head> | |
<meta charset="<?php bloginfo('charset'); ?> "> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title><?php bloginfo('name'); ?> | <?php wp_title(); ?></title> | |
<!-- font awesome icons --> |
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
// Columns | |
$mobile-portrait-columns: 4; | |
$mobile-landscape-columns: 4; | |
$tablet-portrait-columns: 8; | |
$tablet-landscape-columns: 8; | |
$desktop-columns: 12; | |
// Portrait |
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
=circleThing($rad, $height, $width, $bg, $color) | |
-webkit-border-radius: $rad | |
-moz-border-radius: $rad | |
-ms-border-radius: $rad | |
border-radius: $rad | |
height: $height | |
width: $width | |
line-height: $height |
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 | |
//* Do NOT include the opening php tag | |
/********************************** | |
* | |
* Replace Header Site Title with Inline Logo | |
* Fix Genesis bug - when using static front page and blog page (admin reading settings) Home page is <p> tag and Blog page is <h1> tag | |
* Replace "is_home" with "is_front_page" to correctly display Home page wit <h1> tag and Blog page with <p> tag | |
* | |
* @author AlphaBlossom / Tony Eppright |
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
jQuery(function( $ ){ | |
$(".site-header").after('<div class="bumper"></div>'); | |
$(window).scroll(function () { | |
if ($(document).scrollTop() > 50 ) { | |
$('.site-header').addClass('shrink'); | |
} else { | |
$('.site-header').removeClass('shrink'); | |
} |
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
background: linear-gradient(182deg, #0e5a71, #f7951e); | |
background-size: 400% 400%; | |
-webkit-animation: AnimationName 2s ease infinite; | |
-moz-animation: AnimationName 2s ease infinite; | |
-o-animation: AnimationName 2s ease infinite; | |
animation: AnimationName 2s ease infinite; | |
@-webkit-keyframes AnimationName { | |
0%{background-position:52% 0%} | |
50%{background-position:49% 100%} | |
100%{background-position:52% 0%} |
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
# ----------------------------------------------------------------- | |
# .gitignore for WordPress | |
# Bare Minimum Git | |
# http://ironco.de/bare-minimum-git/ | |
# ver 20150227 | |
# | |
# This file is tailored for a WordPress project | |
# using the default directory structure | |
# | |
# This file specifies intentionally untracked files to ignore |
NewerOlder