A list of amazingly awesome PHP libraries, resources and shiny things.
- Composer/Packagist - A package and dependency manager.
- Composer Installers - A multi framework Composer library installer.
// Media Queries in Sass 3.2 | |
// | |
// These mixins make media queries a breeze with Sass. | |
// The media queries from mobile up until desktop all | |
// trigger at different points along the way | |
// | |
// And important point to remember is that and width | |
// over the portrait width is considered to be part of the | |
// landscape width. This allows us to capture widths of devices | |
// that might not fit the dimensions exactly. This means the break |
// {{{ win-safari hacks, scratch this, | |
// let's just expose platform/browser to css | |
(function() | |
{ | |
var uaMatch = '', prefix = ''; | |
if (navigator.userAgent.match(/Windows/)) | |
{ | |
$('html').addClass('x-win'); | |
} |
<?php | |
/* Taxonomy Breadcrumb */ | |
function be_taxonomy_breadcrumb() { | |
// Get the current term | |
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); | |
// Create a list of all the term's parents | |
$parent = $term->parent; | |
while ($parent): | |
$parents[] = $parent; |
A list of amazingly awesome PHP libraries, resources and shiny things.
<!-- START of Facebook Open Graph--> | |
<meta property="og:site_name" content="{Title}"/> | |
{block:PermalinkPage} | |
<meta property="og:url" content="{Permalink}"/> | |
<meta property="og:type" content="article"/> | |
{block:Posts} | |
{block:Text} |