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 | |
//Usage: [include template='template' part='part'] | |
function template_part_shortcode($atts) { | |
extract(shortcode_atts(array( | |
'template' => 'templates/parts/page', | |
'part' => null | |
), $atts)); | |
ob_start(); | |
get_template_part($template, $part); |
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
/* | |
* Mini Admin Bar | |
* Modified from plugin URI: http://www.netyou.co.il/ | |
* Description: Makes the admin bar a small button on the left and expands on hover. | |
*/ | |
add_action('get_header', 'my_filter_head'); | |
function my_filter_head() { remove_action('wp_head', '_admin_bar_bump_cb'); } | |
function my_admin_css() { |
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
.tabs{ | |
margin: {top:40px;} | |
&:last-child{ | |
margin: {bottom:80px;} | |
} | |
h2{ | |
color: $color-1; | |
font: { | |
size: emCalc(36px); | |
} |
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
<link href='http://fonts.googleapis.com/css?family=Arbutus+Slab' rel='stylesheet' type='text/css'> | |
<article class="focus__list"> | |
<div class="focus__area--wrap"> | |
<div class="focus__area"> | |
<div class="focus__icon">&</div> | |
<div class="focus__title"> | |
Ampersand | |
</div> | |
</div> <!-- //__area --> |