This file contains 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
<h1 class="center remove-bottom">Feature Product Pricing Table</h1> | |
<h3 class="center remove-top">Example Demo with Options</h3> | |
[break] | |
[one_third] | |
[callout style="white" align="center" centertitle="true" title="Product One"] | |
<ul class="check nopad"> | |
<li class="yes">Item One</li> | |
<li class="yes">Item Two</li> | |
<li class="no">Item Three</li> | |
<li class="no">Item Four</li> |
This file contains 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
// Defines the font stacks displayed in Theme Options | |
function my_theme_fonts() { | |
$default = array( | |
'opensans' => 'Open Sans', | |
'helvetica' => 'Helvetica', | |
'arial' => 'Arial', | |
'tahoma' => 'Tahoma', | |
'georgia' => 'Georgia', | |
'cambria' => 'Cambria', |
This file contains 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
# Guardfile | |
# More info at https://github.com/guard/guard#readme | |
guard 'livereload' do | |
watch(%r{.+\.(css|html)$}) | |
end | |
guard 'sass', | |
:input => 'sass', | |
:output => 'css', |
This file contains 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
/* Table of Contents | |
================================================== | |
#Base 960 Grid | |
#Tablet (Portrait) | |
#Mobile (Portrait) | |
#Mobile (Landscape) | |
#Clearing */ | |
.full-width {width:960px; height:auto; overflow:hidden} | |
#teaser.normal {width: 960px;} |
This file contains 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
/* Split Individual Widgets into Columns */ | |
function st_split_widgets($sidebar_position) { | |
if ( is_active_sidebar( $sidebar_position )) { | |
// count the active widgets to determine column sizes | |
$the_widgets = wp_get_sidebars_widgets(); | |
$below_content_sidebars = $the_widgets[$sidebar_position]; | |
$number = count($below_content_sidebars); |
This file contains 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 | |
// Defines the font stacks displayed in Theme Options | |
function st_custom_theme_fonts() { | |
$default = array( | |
'lato' => 'Lato', | |
'helvetica' => 'Helvetica', | |
'arial' => 'Arial', | |
'tahoma' => 'Tahoma', | |
'georgia' => 'Georgia', |
This file contains 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
<h4>Preview:</h4> | |
<div class="st-callout hastitle lightred"> | |
<div class="inside"> | |
<h4 class="st-callout-title">Callout Title</h4> | |
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> | |
<a href="#">Link</a> | |
</div> | |
</div> |
This file contains 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 | |
$url = array ( | |
'http://youtu.be/dQw4w9WgXcA', | |
'http://www.youtube.com/embed/dQw4w9WgXcB', | |
'http://www.youtube.com/watch?v=dQw4w9WgXcC', | |
'http://www.youtube.com/?v=dQw4w9WgXcD', | |
'http://www.youtube.com/v/dQw4w9WgXcE', | |
'http://www.youtube.com/e/dQw4w9WgXcF', | |
'http://www.youtube.com/user/username#p/u/11/dQw4w9WgXcG', |
This file contains 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> | |
<!--[if lt IE 7 ]><html class="ie ie6" lang="en-US"> <![endif]--> | |
<!--[if IE 7 ]><html class="ie ie7" lang="en-US"> <![endif]--> | |
<!--[if IE 8 ]><html class="ie ie8" lang="en-US"> <![endif]--> | |
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en-US"> <!--<![endif]--> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Mobius WordPress Theme | Just another WordPress site</title> |
This file contains 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
/*-----------------------------------------------------------------------------------*/ | |
// | |
// Latest Posts | |
// Shortcode Parameters: | |
// | |
/*-----------------------------------------------------------------------------------*/ | |
// excerpt="true|false" ------ display the excerpt or 'more' tag break | |
// length="50" ------ excerpt word length | |
// thumbs="true|false" ------ display featured thumbnail | |
// width="50" ------ featured thumbnail width |