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
/** | |
* Sets a media query for the specified breakpoint | |
* | |
* Accepts: | |
* - $at-query: {String} Breakpoint variable (list found in variables.scss) | |
* | |
* Usage: | |
* .selector { | |
* @include at-query($medium) { |
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
apt-get install -y httpie curl gcc git ssh gitk kdiff3 imagemagick | |
apt-get install -y ruby gem | |
sudo apt-get install -y ruby ruby-full gem | |
sudo gem install sass | |
sudo gem install compass | |
sudo gem install hpricot | |
sudo gem install premailer |
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 if ( have_posts() ) : query_posts('p=1'); | |
while (have_posts()) : the_post(); ?> | |
<?php the_title(); ?> | |
<?php the_content(); ?> | |
<?php the_post_thumbnail(array(100, 100)); ?> | |
<? endwhile; endif; wp_reset_query(); ?> |