I hereby claim:
- I am matt-west on github.
- I am mattwest (https://keybase.io/mattwest) on keybase.
- I have a public key whose fingerprint is 8598 3B27 6E26 F063 3E64 092A D11B 1A14 E76F C18D
To claim this, I am signing this object:
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'json' | |
puts "Opening File" | |
file = File.open('input.json') | |
puts "Fetching Contents" | |
content = file.read |
/* | |
* File: Grid System | |
* Author: Matt West <matt.west@kojilabs.com> | |
*/ | |
$gd-container-width: 1200px | |
$gd-column-width: 100%/12 | |
$gd-padding: 2em | |
.container |
I hereby claim:
To claim this, I am signing this object:
<style type="text/css"> | |
#mc_embed_signup{ | |
background:#F7F7F7; | |
border: 1px solid #EEE; | |
border-radius: 3px; | |
margin-top: 3em; | |
clear:left; | |
font:14px Helvetica,Arial,sans-serif; | |
} |
<!DOCTYPE html> | |
<html prefix="og: http://ogp.me/ns#" xmlns:og="http://ogp.me/ns#"> | |
<head> | |
... | |
<link href="//cdn-images.mailchimp.com/embedcode/classic-081711.css" rel="stylesheet" type="text/css"> | |
<style type="text/css"> | |
#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; } | |
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block. | |
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */ |
<div class="post-footer"> | |
... | |
<ul class="post-options"> | |
<li>{{ theme.social.share }}</li> | |
<li>{{ theme.social.follow }}</li> | |
<li>{{ theme.social.like }}</li> | |
</ul> | |
</div> | |
<!-- INSERT FORM CODE HERE --> |
<!-- Begin MailChimp Signup Form --> | |
<link href="//cdn-images.mailchimp.com/embedcode/classic-081711.css" rel="stylesheet" type="text/css"> | |
<style type="text/css"> | |
#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; } | |
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block. | |
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */ | |
</style> | |
<div id="mc_embed_signup"> | |
<form action="//kojilabs.us4.list-manage.com/subscribe/post?u=f8cbddda8612357bfc16b352d&id=b5f20267d6" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate> | |
<h2>Subscribe to our mailing list</h2> |
{% if is_tag %} | |
<h3 class="tag-header">Showing all posts tagged "{{ tag|format_tag(False, True) }}"</h3> | |
{% endif %} |
{% for post in posts %} | |
<div class="item"> | |
<h3><a href="{{ post.permalink }}">{{ post.title }}</a></h3> | |
<div class="post-content" data-type-cleanup="true"> | |
{{ post.content }} | |
</div> | |
<a class="post-author" href="{{ site.base_url }}"> | |
<img src="{{ post.author.avatar }}" /> | |
<p> | |
<span class="post-author-name">{{ post.author.name }}</span> |
<!-- Styling for tag cloud --> | |
<style> | |
.tag-cloud { | |
width: 60%; | |
max-width: 1280px; | |
margin: 5em auto 1em; | |
text-align: center; | |
} | |
.tag-cloud h4 { |