greyjoy_ink 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +20 -0
  4. data/assets/config.yml +3 -0
  5. data/assets/includes/after_footer.html +1 -0
  6. data/assets/includes/archive_post.html +8 -0
  7. data/assets/includes/article.html +25 -0
  8. data/assets/includes/article_excerpt.html +22 -0
  9. data/assets/includes/asides/about.html +8 -0
  10. data/assets/includes/asides/book.html +7 -0
  11. data/assets/includes/asides/delicious.html +8 -0
  12. data/assets/includes/asides/github.html +30 -0
  13. data/assets/includes/asides/googleplus.html +11 -0
  14. data/assets/includes/asides/pinboard.html +19 -0
  15. data/assets/includes/asides/recent_posts.html +10 -0
  16. data/assets/includes/asides/twitter.html +19 -0
  17. data/assets/includes/custom/after_footer.html +3 -0
  18. data/assets/includes/custom/category_feed.xml +27 -0
  19. data/assets/includes/custom/footer.html +10 -0
  20. data/assets/includes/custom/head.html +3 -0
  21. data/assets/includes/custom/header.html +3 -0
  22. data/assets/includes/custom/navigation.html +6 -0
  23. data/assets/includes/footer.html +1 -0
  24. data/assets/includes/head.html +29 -0
  25. data/assets/includes/header.html +1 -0
  26. data/assets/includes/navigation.html +1 -0
  27. data/assets/includes/post/#related_posts.html# +17 -0
  28. data/assets/includes/post/author.html +8 -0
  29. data/assets/includes/post/categories.html +10 -0
  30. data/assets/includes/post/date.html +15 -0
  31. data/assets/includes/post/disqus_thread.html +1 -0
  32. data/assets/includes/post/juvia_thread.html +1 -0
  33. data/assets/includes/post/sharing.html +11 -0
  34. data/assets/layouts/category_index.html +17 -0
  35. data/assets/layouts/default.html +14 -0
  36. data/assets/layouts/default_naked.html +11 -0
  37. data/assets/layouts/index.html +23 -0
  38. data/assets/layouts/page.html +23 -0
  39. data/assets/layouts/page_naked.html +9 -0
  40. data/assets/layouts/post.html +19 -0
  41. data/assets/pages/404.markdown +7 -0
  42. data/assets/pages/blog/archives/index.html +18 -0
  43. data/assets/pages/index.html +22 -0
  44. data/assets/stylesheets/screen.css +1 -0
  45. data/bin/console +14 -0
  46. data/bin/setup +7 -0
  47. data/lib/greyjoy_ink.rb +13 -0
  48. data/lib/greyjoy_ink/version.rb +3 -0
  49. metadata +190 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 42ec429b9dd12c8f3afceb839286e300769b4814
4
+ data.tar.gz: 853cf9fd373781ddbea14e608f73fa75a39ef716
5
+ SHA512:
6
+ metadata.gz: 6cba9e83d97f633ef93618708ad9c024980c5fe0d26d6daa2c81b27447c994873d759125814c52afdee849fd7587fc46b29a01dd05238014ed64cdf6f5a01e29
7
+ data.tar.gz: 4562ac0f8f6a94d351b28d7aeb9583f77f90444402731346dd28cf43e6c47713f9542161c8aaa45b9818604c8fcb33e7172ef4d61a6f1e5f118a1e679ed38a1b
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Christopher R. Miller
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,20 @@
1
+ # Greyjoy Ink
2
+
3
+ Greyjoy Ink is based on the Octopress 2 theme by Reza Jatnika. It has
4
+ been seriously cut-down, with the stuff I didn't want removed (Disqus,
5
+ FaceTwitPlus sharing bollocks, etc) eviscerated to create what I feel is
6
+ a lovely minimalist blog theme.
7
+
8
+ *Features!*
9
+
10
+ * Super-minimalist
11
+ * Justified & hypenated content
12
+ * MathJax
13
+
14
+ ## Contributing
15
+
16
+ 1. Fork it ( https://github.com/[my-github-username]/greyjoy_ink/fork )
17
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
18
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
19
+ 4. Push to the branch (`git push origin my-new-feature`)
20
+ 5. Create a new Pull Request
@@ -0,0 +1,3 @@
1
+ excerpt_link: "Read on →"
2
+ excerpt_separator: "<!--more-->"
3
+
@@ -0,0 +1 @@
1
+ {% include theme:custom/after_footer.html %}
@@ -0,0 +1,8 @@
1
+ {% capture category %}{{ post.categories | size }}{% endcapture %}
2
+ <h1><a href="{{ root_url }}{{ post.url }}">{{post.title}}</a></h1>
3
+ <time datetime="{{ post.date | datetime | date_to_xmlschema }}" pubdate>{{ post.date | date: "<span class='month'>%b</span> <span class='day'>%d</span> <span class='year'>%Y</span>"}}</time>
4
+ {% if category != '0' %}
5
+ <footer>
6
+ <span class="categories">posted in {{ post.categories | category_links }}</span>
7
+ </footer>
8
+ {% endif %}
@@ -0,0 +1,25 @@
1
+ {% unless page.no_header %}
2
+ <header>
3
+ {% if index %}
4
+ <h1 class="entry-title"><a href="{{ root_url }}{{ post.url }}">{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a></h1>
5
+ {% else %}
6
+ <h1 class="entry-title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1>
7
+ {% endif %}
8
+ {% unless page.meta == false %}
9
+ <p class="meta">
10
+ {% include theme:post/date.html %}{{ time }}
11
+ </p>
12
+ {% endunless %}
13
+ </header>
14
+ {% endunless %}
15
+ {% if index %}
16
+ <div class="entry-content">{{ content | excerpt }}</div>
17
+ {% capture excerpted %}{{ content | has_excerpt }}{% endcapture %}
18
+ {% if excerpted == 'true' %}
19
+ <footer>
20
+ <a rel="full-article" href="{{ root_url }}{{ post.url }}">{{ site.excerpt_link }}</a>
21
+ </footer>
22
+ {% endif %}
23
+ {% else %}
24
+ <div class="entry-content">{{ content }}</div>
25
+ {% endif %}
@@ -0,0 +1,22 @@
1
+ {% unless page.no_header %}
2
+ <header>
3
+ {% if index %}
4
+ <h1 class="entry-title"><a href="{{ root_url }}{{ post.url }}">{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a></h1>
5
+ {% else %}
6
+ <h1 class="entry-title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1>
7
+ {% endif %}
8
+ {% unless page.meta == false %}
9
+ <p class="meta">
10
+ {% include theme:post/date.html %}{{ time }}
11
+ </p>
12
+ {% endunless %}
13
+ </header>
14
+ {% endunless %}
15
+ {% if index %}
16
+ <div class="entry-content">{{ content | excerpt }}</div>
17
+ <footer>
18
+ <a rel="full-article" href="{{ root_url }}{{ post.url }}">{{ theme.excerpt_link }}</a>
19
+ </footer>
20
+ {% else %}
21
+ <div class="entry-content">{{ content }}</div>
22
+ {% endif %}
@@ -0,0 +1,8 @@
1
+ <aside>
2
+ <h3>About Bill <img src="/images/branding/avatar.png" class="left" style="padding-right: 10px;" /></h3>
3
+ <p>
4
+ I'm Bill Patrianakos. I created <a href="https://writeapp.me">Write.app</a>, founded <a href="https://chooseclever.com">Clever Web Design</a>, and work as a web developer in Chicago.
5
+ <br />
6
+ <a class="button" href="">Related Stuff <i class="icon-circle-arrow-down"></i></a>
7
+ </p>
8
+ </aside>
@@ -0,0 +1,7 @@
1
+ <aside>
2
+ <h3>Get the book</h3>
3
+ <p>
4
+ Sign up to pre-order <a href="{{ root_url }}/blog/2012/11/14/the-self-taught-developers-guide-to-getting-paid/">The Self-Taught Developer's Guide to Getting Paid</a>, receive a free chapter or two, and even a discount if you're good boys and girls.
5
+ </p>
6
+ <form accept-charset="UTF-8" action="https://sendicate.net/subscribe/3pbngc" method="post"> <label for="subscriber_name">Name</label> <input id="subscriber_name" name="subscriber[name]" type="text" /> <br /> <label for="subscriber_email">Email</label> <input id="subscriber_email" name="subscriber[email]" type="text" /> <br /> <input name="commit" type="submit" value="Subscribe" /> </form>
7
+ </aside>
@@ -0,0 +1,8 @@
1
+ {% if site.delicious_user %}
2
+ <section>
3
+ <h1>On Delicious</h1>
4
+ <div id="delicious"></div>
5
+ <script type="text/javascript" src="http://feeds.delicious.com/v2/json/{{ site.delicious_user }}?count={{ site.delicious_count }}&amp;sort=date&amp;callback=renderDeliciousLinks"></script>
6
+ <p><a href="http://delicious.com/{{ site.delicious_user }}">My Delicious Bookmarks &raquo;</a></p>
7
+ </section>
8
+ {% endif %}
@@ -0,0 +1,30 @@
1
+ {% if site.github_user %}
2
+ <section>
3
+ <h1>GitHub Repos</h1>
4
+ <ul id="gh_repos">
5
+ <li class="loading">Status updating...</li>
6
+ </ul>
7
+ {% if site.github_show_profile_link %}
8
+ <a href="https://github.com/{{site.github_user}}">@{{site.github_user}}</a> on GitHub
9
+ {% endif %}
10
+ <script type="text/javascript">
11
+ $(document).ready(function(){
12
+ if (!window.jXHR){
13
+ var jxhr = document.createElement('script');
14
+ jxhr.type = 'text/javascript';
15
+ jxhr.src = '{{ root_url}}/javascripts/libs/jXHR.js';
16
+ var s = document.getElementsByTagName('script')[0];
17
+ s.parentNode.insertBefore(jxhr, s);
18
+ }
19
+
20
+ github.showRepos({
21
+ user: '{{site.github_user}}',
22
+ count: {{site.github_repo_count}},
23
+ skip_forks: {{site.github_skip_forks}},
24
+ target: '#gh_repos'
25
+ });
26
+ });
27
+ </script>
28
+ <script src="{{ root_url }}/javascripts/github.js" type="text/javascript"> </script>
29
+ </section>
30
+ {% endif %}
@@ -0,0 +1,11 @@
1
+ {% if site.googleplus_user %}
2
+ <section class="googleplus{% if site.googleplus_hidden %} googleplus-hidden{% endif %}">
3
+ <h1>
4
+ <a href="https://plus.google.com/{{ site.googleplus_user }}?rel=author">
5
+ <img src="http://www.google.com/images/icons/ui/gprofile_button-32.png" width="32" height="32">
6
+ Google+
7
+ </a>
8
+ </h1>
9
+ </section>
10
+ {% endif %}
11
+
@@ -0,0 +1,19 @@
1
+ {% if site.pinboard_user %}
2
+ <section>
3
+ <h1>My Pinboard</h1>
4
+ <ul id="pinboard_linkroll">Fetching linkroll...</ul>
5
+ <p><a href="http://pinboard.in/u:{{ site.pinboard_user }}">My Pinboard Bookmarks &raquo;</a></p>
6
+ </section>
7
+ <script type="text/javascript">
8
+ var linkroll = 'pinboard_linkroll'; //id target for pinboard list
9
+ var pinboard_user = "{{ site.pinboard_user }}"; //id target for pinboard list
10
+ var pinboard_count = {{ site.pinboard_count }}; //id target for pinboard list
11
+ (function(){
12
+ var pinboardInit = document.createElement('script');
13
+ pinboardInit.type = 'text/javascript';
14
+ pinboardInit.async = true;
15
+ pinboardInit.src = '{{ root_url }}/javascripts/pinboard.js';
16
+ document.getElementsByTagName('head')[0].appendChild(pinboardInit);
17
+ })();
18
+ </script>
19
+ {% endif %}
@@ -0,0 +1,10 @@
1
+ <section>
2
+ <h1>Recent Posts</h1>
3
+ <ul id="recent_posts">
4
+ {% for post in site.posts limit: site.recent_posts %}
5
+ <li class="post">
6
+ <a href="{{ root_url }}{{ post.url }}">{{ post.title }}</a>
7
+ </li>
8
+ {% endfor %}
9
+ </ul>
10
+ </section>
@@ -0,0 +1,19 @@
1
+ {% if site.twitter_user %}
2
+ <section>
3
+ <h1>Latest Tweets</h1>
4
+ <ul id="tweets">
5
+ <li class="loading">Status updating...</li>
6
+ </ul>
7
+ <script type="text/javascript">
8
+ $.domReady(function(){
9
+ getTwitterFeed("{{site.twitter_user}}", {{site.twitter_tweet_count}}, {{site.twitter_show_replies}});
10
+ });
11
+ </script>
12
+ <script src="{{ root_url }}/javascripts/twitter.js" type="text/javascript"> </script>
13
+ {% if site.twitter_follow_button %}
14
+ <a href="http://twitter.com/{{ site.twitter_user }}" class="twitter-follow-button" data-show-count="{{ site.twitter_show_follower_count }}">Follow @{{ site.twitter_user }}</a>
15
+ {% else %}
16
+ <p>Follow <a href="http://twitter.com/{{site.twitter_user}}">@{{ site.twitter_user }}</a></p>
17
+ {% endif %}
18
+ </section>
19
+ {% endif %}
@@ -0,0 +1,3 @@
1
+ {% comment %}
2
+ Add content to be output at the bottom of each page. (You might use this for analytics scripts, for example)
3
+ {% endcomment %}
@@ -0,0 +1,27 @@
1
+ ---
2
+ layout: nil
3
+ ---
4
+ <?xml version="1.0" encoding="utf-8"?>
5
+ <feed xmlns="http://www.w3.org/2005/Atom">
6
+
7
+ <title><![CDATA[{{ page.title }} | {{ site.title }}]]></title>
8
+ <link href="{{ site.url }}/{{ page.feed_url }}" rel="self"/>
9
+ <link href="{{ site.url }}/"/>
10
+ <updated>{{ site.time | date_to_xmlschema }}</updated>
11
+ <id>{{ site.url }}/</id>
12
+ <author>
13
+ <name><![CDATA[{{ site.author | strip_html }}]]></name>
14
+ {% if site.email %}<email><![CDATA[{{ site.email }}]]></email>{% endif %}
15
+ </author>
16
+ <generator uri="http://octopress.org/">Octopress</generator>
17
+
18
+ {% for post in site.categories[page.category] limit: 5 %}
19
+ <entry>
20
+ <title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
21
+ <link href="{{ site.url }}{{ post.url }}"/>
22
+ <updated>{{ post.date | date_to_xmlschema }}</updated>
23
+ <id>{{ site.url }}{{ post.id }}</id>
24
+ <content type="html"><![CDATA[{{ post.content | expand_urls: site.url | markdownify | cdata_escape }}]]></content>
25
+ </entry>
26
+ {% endfor %}
27
+ </feed>
@@ -0,0 +1,10 @@
1
+ <p>
2
+ Copyright &copy; {{ site.time | date: "%Y" }} - {{ site.author }}
3
+ </p>
4
+ <!--
5
+ if you're looking at this, you might like to know that this theme
6
+ is called Greyjoy, mercilessly hacked into a minimalist version by
7
+ Mysterious Pants. Greyjoy was originally made by Reza Jatnika.
8
+
9
+ https://github.com/mysteriouspants/greyjoy_ink
10
+ -->
@@ -0,0 +1,3 @@
1
+ <!--Fonts from Google"s Web font directory at http://google.com/webfonts -->
2
+ <link href='http://fonts.googleapis.com/css?family=Vollkorn:400,400italic,700,700italic' rel='stylesheet' type='text/css'>
3
+ <link href='http://fonts.googleapis.com/css?family=Cabin' rel='stylesheet' type='text/css'>
@@ -0,0 +1,3 @@
1
+ <hgroup>
2
+ <h1><a href="{{ root_url }}/">{{ site.title }}</a></h1>
3
+ </hgroup>
@@ -0,0 +1,6 @@
1
+ <div class="navi">
2
+ <ul>
3
+ <li><a href="{{ root_url }}/">Blog</a></li>
4
+ <li><a href="{{ root_url }}/blog/archives">Archives</a></li>
5
+ </ul>
6
+ </div>
@@ -0,0 +1 @@
1
+ {% include theme:custom/footer.html %}
@@ -0,0 +1,29 @@
1
+ <!DOCTYPE html>
2
+ <!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
3
+ <!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
4
+ <!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
5
+ <head>
6
+ <meta charset="utf-8">
7
+ <title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title>
8
+ <meta name="author" content="{{ site.author }}">
9
+
10
+ {% capture description %}{% if page.description %}{{ page.description }}{% else %}{{ content | raw_content }}{% endif %}{% endcapture %}
11
+ <meta name="description" content="{{ description | strip_html | condense_spaces | truncate:150 }}">
12
+ {% if page.keywords %}<meta name="keywords" content="{{ page.keywords }}">{% endif %}
13
+
14
+ <!-- http://t.co/dKP3o1e -->
15
+ <meta name="HandheldFriendly" content="True">
16
+ <meta name="MobileOptimized" content="320">
17
+ <meta name="viewport" content="width=device-width, initial-scale=1">
18
+
19
+ {% capture canonical %}{{ site.url }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %}
20
+ <link rel="canonical" href="{{ canonical }}">
21
+ <link href="{{ root_url }}/favicon.png" rel="icon">
22
+ {% css_asset_tag %}
23
+ <link href="{{ site.subscribe_rss }}" rel="alternate" title="{{site.title}}" type="application/atom+xml">
24
+ {% js_asset_tag %}
25
+ <script type="text/javascript"
26
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
27
+
28
+ {% include theme:custom/head.html %}
29
+ </head>
@@ -0,0 +1 @@
1
+ {% include theme:custom/header.html %}
@@ -0,0 +1 @@
1
+ {% include theme:custom/navigation.html %}
@@ -0,0 +1,17 @@
1
+ {% capture category %}{% if post %}{{ post.categories | category_links | size }}{% else %}{{ page.categories | category_links | size }}{% endif %}{% endcapture %}
2
+ {% unless category == '0' %}
3
+ <span class="categories">
4
+ {% if post %}
5
+ {{ post.categories | category_links }}
6
+ {% else %}
7
+ {{ page.categories | category_links }}
8
+ {% endif %}
9
+ </span>
10
+ {% endunless %}
11
+
12
+ {% if site.related_posts %}
13
+ <span class="related">
14
+ <h3>Related:</h3>
15
+ <ul>
16
+ </span>
17
+ {% endif %}
@@ -0,0 +1,8 @@
1
+ {% if post.author %}
2
+ {% assign author = post.author %}
3
+ {% elsif page.author %}
4
+ {% assign author = page.author %}
5
+ {% else %}
6
+ {% assign author = site.author %}
7
+ {% endif %}
8
+ {% if author %}<span class="byline author vcard">Posted by <span class="fn">{{ author }}</span></span>{% endif %}
@@ -0,0 +1,10 @@
1
+ {% capture category %}{% if post %}{{ post.categories | category_links | size }}{% else %}{{ page.categories | category_links | size }}{% endif %}{% endcapture %}
2
+ {% unless category == '0' %}
3
+ <span class="categories">
4
+ {% if post %}
5
+ {{ post.categories | category_links }}
6
+ {% else %}
7
+ {{ page.categories | category_links }}
8
+ {% endif %}
9
+ </span>
10
+ {% endunless %}
@@ -0,0 +1,15 @@
1
+ {% capture date %}{{ page.date }}{{ post.date }}{% endcapture %}
2
+ {% capture date_formatted %}{{ page.date_formatted }}{{ post.date_formatted }}{% endcapture %}
3
+ {% capture has_date %}{{ date | size }}{% endcapture %}
4
+
5
+ {% capture updated %}{{ page.updated }}{{ post.updated }}{% endcapture %}
6
+ {% capture updated_formatted %}{{ page.updated_formatted }}{{ post.updated_formatted }}{% endcapture %}
7
+ {% capture was_updated %}{{ updated | size }}{% endcapture %}
8
+
9
+ {% if has_date != '0' %}
10
+ {% capture time %}<time datetime="{{ date | datetime | date_to_xmlschema }}" pubdate{% if updated %} data-updated="true"{% endif %}>{{ date_formatted }}</time>{% endcapture %}
11
+ {% endif %}
12
+
13
+ {% if was_updated != '0' %}
14
+ {% capture updated %}<time datetime="{{ updated | datetime | date_to_xmlschema }}" class="updated">Updated {{ updated_formatted }}</time>{% endcapture %}
15
+ {% else %}{% assign updated = false %}{% endif %}
@@ -0,0 +1 @@
1
+ <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
@@ -0,0 +1 @@
1
+ <noscript>Please enable JavaScript to view the comments powered by Juvia.</noscript>
@@ -0,0 +1,11 @@
1
+ <div class="sharing">
2
+ {% if site.twitter_tweet_button %}
3
+ <a href="http://twitter.com/share" class="twitter-share-button" data-url="{{ site.url }}{{ page.url }}" data-via="{{ site.twitter_user }}" data-counturl="{{ site.url }}{{ page.url }}" >Tweet</a>
4
+ {% endif %}
5
+ {% if site.google_plus_one %}
6
+ <div class="g-plusone" data-size="{{ site.google_plus_one_size }}"></div>
7
+ {% endif %}
8
+ {% if site.facebook_like %}
9
+ <div class="fb-like" data-send="true" data-width="450" data-show-faces="false"></div>
10
+ {% endif %}
11
+ </div>
@@ -0,0 +1,17 @@
1
+ ---
2
+ layout: theme:page
3
+ footer: false
4
+ ---
5
+
6
+ <div id="blog-archives" class="category">
7
+ {% for post in site.categories[page.category] %}
8
+ {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
9
+ {% unless year == this_year %}
10
+ {% assign year = this_year %}
11
+ <h2>{{ year }}</h2>
12
+ {% endunless %}
13
+ <article>
14
+ {% include archive_post.html %}
15
+ </article>
16
+ {% endfor %}
17
+ </div>
@@ -0,0 +1,14 @@
1
+ {% capture root_url %}{{ site.root | strip_slash }}{% endcapture %}
2
+ {% include theme:head.html %}
3
+ <body {% if page.body_id %} id="{{ page.body_id }}" {% endif %} {% if page.sidebar == false %} class="no-sidebar" {% endif %} class="collapse-sidebar sidebar-footer" >
4
+ <header role="banner">{% include theme:header.html %}</header>
5
+ {% include theme:navigation.html %}
6
+ <div id="main">
7
+ <div id="content">
8
+ {{ content | expand_urls: root_url }}
9
+ </div>
10
+ </div>
11
+ <footer role="contentinfo">{% include theme:footer.html %}</footer>
12
+ {% include theme:after_footer.html %}
13
+ </body>
14
+ </html>
@@ -0,0 +1,11 @@
1
+ {% capture root_url %}{{ site.root | strip_slash }}{% endcapture %}
2
+ {% include theme:head.html %}
3
+ <body {% if page.body_id %} id="{{ page.body_id }}" {% endif %} {% if page.sidebar == false %} class="no-sidebar" {% endif %} class="collapse-sidebar sidebar-footer" >
4
+ <div id="main">
5
+ <div id="content">
6
+ {{ content | expand_urls: root_url }}
7
+ </div>
8
+ </div>
9
+ {% include theme:after_footer.html %}
10
+ </body>
11
+ </html>
@@ -0,0 +1,23 @@
1
+ ---
2
+ layout: theme:default
3
+ ---
4
+
5
+ <div class="blog-index">
6
+ {% assign index = true %}
7
+ {% for post in paginator.posts %}
8
+ {% assign content = post.excerpt %}
9
+ <article>
10
+ {% include theme:article_excerpt.html %}
11
+ </article>
12
+ {% endfor %}
13
+ <div class="pagination">
14
+ {% if paginator.next_page %}
15
+ <a class="prev" href="/{{paginator.next_page}}">&larr; Older</a>
16
+ {% endif %}
17
+ <a href="/blog/archives">Blog Archives</a>
18
+ {% if paginator.previous_page %}
19
+ <a class="next" href="/{{paginator.previous_page}}">Newer &rarr;</a>
20
+ {% endif %}
21
+ </div>
22
+ </div>
23
+
@@ -0,0 +1,23 @@
1
+ ---
2
+ layout: theme:default
3
+ ---
4
+
5
+ <div>
6
+ <article role="article">
7
+ {% if page.title %}
8
+ <header>
9
+ <h1 class="entry-title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1>
10
+ {% if page.date %}<p class="meta">{% include theme:post/date.html %}{{ time }}</p>{% endif %}
11
+ </header>
12
+ {% endif %}
13
+ {{ content }}
14
+ {% unless page.footer == false %}
15
+ <footer>
16
+ {% if page.date or page.author %}<p class="meta">
17
+ {% if page.author %}{% include theme:post/author.html %}{% endif %}
18
+ {% include theme:post/date.html %}{% if updated %}{{ updated }}{% else %}{{ time }}{% endif %}
19
+ {% if page.categories %}{% include theme:post/categories.html %}{% endif %}
20
+ </p>{% endif %}
21
+ </footer>
22
+ {% endunless %}
23
+ </article>
@@ -0,0 +1,9 @@
1
+ ---
2
+ layout: theme:default_naked
3
+ ---
4
+
5
+ <div>
6
+ <article role="article">
7
+ {{ content }}
8
+ </article>
9
+ </div>
@@ -0,0 +1,19 @@
1
+ ---
2
+ layout: theme:default
3
+ single: true
4
+ ---
5
+
6
+ <div>
7
+ <article class="hentry" role="article">
8
+ {% include theme:article.html %}
9
+ <footer>
10
+ <p class="meta">
11
+ {% if page.previous.url %}
12
+ <a class="basic-alignment left" href="{{page.previous.url}}" title="Previous Post: {{page.previous.title}}">&laquo; {{page.previous.title}}</a>
13
+ {% endif %}
14
+ {% if page.next.url %}
15
+ <a class="basic-alignment right" href="{{page.next.url}}" title="Next Post: {{page.next.title}}">{{page.next.title}} &raquo;</a>
16
+ {% endif %}
17
+ </p>
18
+ </footer>
19
+ </article>
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: theme:page
3
+ sharing: false
4
+ ---
5
+
6
+ ## Crap!!
7
+ Looks like the page you're looking for doesn't exist. Just go [home](/) and try again!
@@ -0,0 +1,18 @@
1
+ ---
2
+ layout: theme:page
3
+ title: Blog Archive
4
+ footer: false
5
+ ---
6
+
7
+ <div id="blog-archives">
8
+ {% for post in site.posts reverse %}
9
+ {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
10
+ {% unless year == this_year %}
11
+ {% assign year = this_year %}
12
+ <h2>{{ year }}</h2>
13
+ {% endunless %}
14
+ <article>
15
+ {% include theme:archive_post.html %}
16
+ </article>
17
+ {% endfor %}
18
+ </div>
@@ -0,0 +1,22 @@
1
+ ---
2
+ layout: theme:default
3
+ ---
4
+
5
+ <div class="blog-index">
6
+ {% assign index = true %}
7
+ {% for post in paginator.posts %}
8
+ {% assign content = post.excerpt %}
9
+ <article>
10
+ {% include theme:article_excerpt.html %}
11
+ </article>
12
+ {% endfor %}
13
+ <div class="pagination">
14
+ {% if paginator.next_page %}
15
+ <a class="prev" href="/{{paginator.next_page}}">&larr; Older</a>
16
+ {% endif %}
17
+ <a href="/blog/archives">Blog Archives</a>
18
+ {% if paginator.previous_page %}
19
+ <a class="next" href="/{{paginator.previous_page}}">Newer &rarr;</a>
20
+ {% endif %}
21
+ </div>
22
+ </div>
@@ -0,0 +1 @@
1
+ html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}html{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;font-weight:normal;vertical-align:middle}q,blockquote{quotes:none}q:before,q:after,blockquote:before,blockquote:after{content:"";content:none}a img{border:none}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}.navi{text-align:center}.navi ul{padding:0;list-style:none}.navi ul li{display:inline-block;vertical-align:middle;*vertical-align:auto;*zoom:1;*display:inline;margin:0;padding:0 1em}.navi ul li a{color:#000;text-decoration:none}.navi ul li a:hover{color:#8C8C8C}.navi ul li a:active{color:#8C8C8C}body>footer p:last-child{text-align:center;font-size:0.9em;margin-bottom:0px}a{color:#1863a1}a:visited{color:#751590}a:focus{color:#0181eb}a:hover{color:#0181eb}a:active{color:#01579f}aside.sidebar a{color:#1863a1}aside.sidebar a:focus{color:#0181eb}aside.sidebar a:hover{color:#0181eb}aside.sidebar a:active{color:#01579f}a{-moz-transition:color 0.3s;-o-transition:color 0.3s;-webkit-transition:color 0.3s;transition:color 0.3s}html{background:#252525 url('/images/line-tile.png?1409989712') top left}body>div{background:#f2f2f2 url('/images/noise.png?1409989712') top left;border-bottom:1px solid #bfbfbf}body>div>div{background:#f8f8f8 url('/images/noise.png?1409989712') top left;border-right:1px solid #e0e0e0}.heading{font-family:"Cabin","Helvetica Neue",Arial,sans-serif}.sans,body>header h2,article header p.meta,article>footer,#content .blog-index footer,html .gist .gist-file .gist-meta,#blog-archives a.category,#blog-archives time,body>footer{font-family:"Cabin","Helvetica Neue",Arial,sans-serif}.serif,body>header h1,body,h1,h2,h3,h4,h5,h6,p,article blockquote,ul,ol,strong,dfn,article blockquote cite,article,#content .blog-index a[rel=full-article]{font-family:"Vollkorn",Georgia,Times,"Times New Roman",serif}.mono,pre,code,tt,p code,li code{font-family:Menlo,Monaco,"Andale Mono","lucida console","Courier New",monospace}body>header h1{font-size:2.2em;font-family:"Fjalla One","Georgia","Helvetica Neue",Arial,sans-serif;font-weight:normal;line-height:1.2em;margin-bottom:0.6667em}body>header h2{font-family:"Vollkorn",Georgia,Times,"Times New Roman",serif}body{line-height:1.5em;color:#222}h1{font-size:2.2em;line-height:1.2em}@media only screen and (min-width: 992px){body{font-size:1.15em}h1{font-size:2.6em;line-height:1.2em}}h1,h2,h3,h4,h5,h6{text-rendering:optimizelegibility;margin-bottom:1em;font-weight:bold}h2,section h1{font-size:1.5em}h3,section h2,section section h1{font-size:1.3em}h4,section h3,section section h2,section section section h1{font-size:1em}h5,section h4,section section h3{font-size:.9em}h6,section h5,section section h4,section section section h3{font-size:.8em}p,article blockquote,ul,ol{margin-bottom:1.5em}ul{list-style-type:disc}ul ul{list-style-type:circle;margin-bottom:0px}ul ul ul{list-style-type:square;margin-bottom:0px}ol{list-style-type:decimal}ol ol{list-style-type:lower-alpha;margin-bottom:0px}ol ol ol{list-style-type:lower-roman;margin-bottom:0px}ul,ul ul,ul ol,ol,ol ul,ol ol{margin-left:1.3em}ul ul,ul ol,ol ul,ol ol{margin-bottom:0em}strong{font-weight:bold}em{font-style:italic}sup,sub{font-size:0.8em;position:relative;display:inline-block}sup{top:-.5em}sub{bottom:-.5em}q{font-style:italic}q:before{content:"\201C"}q:after{content:"\201D"}em,dfn{font-style:italic}strong,dfn{font-weight:bold}del,s{text-decoration:line-through}abbr,acronym{border-bottom:1px dotted;cursor:help}sub,sup{line-height:0}hr{margin-bottom:0.2em}small{font-size:.8em}big{font-size:1.2em}article blockquote{font-style:italic;position:relative;font-size:1.2em;line-height:1.5em;padding-left:1em;border-left:4px solid rgba(170,170,170,0.5)}article blockquote cite{font-style:italic}article blockquote cite a{color:#aaa !important;word-wrap:break-word}article blockquote cite:before{content:'\2014';padding-right:.3em;padding-left:.3em;color:#aaa}@media only screen and (min-width: 992px){article blockquote{padding-left:1.5em;border-left-width:4px}}.pullquote-right:before,.pullquote-left:before{padding:0;border:none;content:attr(data-pullquote);float:right;width:45%;margin:.5em 0 1em 1.5em;position:relative;top:7px;font-size:1.4em;line-height:1.45em}.pullquote-left:before{float:left;margin:.5em 1.5em 1em 0}.force-wrap,article a{white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;white-space:pre-wrap;word-wrap:break-word}article{font-size:1em;line-height:1.7em;text-align:left}.group,body>header,body>nav,body>footer,body #content>article,body #content>div>article,body #content>div>section,body div.pagination,aside.sidebar,#main,#content,.sidebar{*zoom:1}.group:after,body>header:after,body>nav:after,body>footer:after,body #content>article:after,body #content>div>article:after,body #content>div>section:after,body div.pagination:after,#main:after,#content:after,.sidebar:after{content:"";display:table;clear:both}body{-webkit-text-size-adjust:none;max-width:1200px;position:relative;margin:0 auto}body>header,body>nav,body>footer,body #content>article,body #content>div>article,body #content>div>section{padding-left:18px;padding-right:18px}@media only screen and (min-width: 480px){body>header,body>nav,body>footer,body #content>article,body #content>div>article,body #content>div>section{padding-left:25px;padding-right:25px}}@media only screen and (min-width: 768px){body>header,body>nav,body>footer,body #content>article,body #content>div>article,body #content>div>section{padding-left:35px;padding-right:35px}}@media only screen and (min-width: 992px){body>header,body>nav,body>footer,body #content>article,body #content>div>article,body #content>div>section{padding-left:55px;padding-right:55px}}body div.pagination{margin-left:18px;margin-right:18px}@media only screen and (min-width: 480px){body div.pagination{margin-left:25px;margin-right:25px}}@media only screen and (min-width: 768px){body div.pagination{margin-left:35px;margin-right:35px}}@media only screen and (min-width: 992px){body div.pagination{margin-left:55px;margin-right:55px}}body>header{font-size:1em;padding-top:1.5em;padding-bottom:1.5em}#content{overflow:hidden}#content>div,#content>article{width:100%}aside.sidebar{float:none;padding:0 18px 1px;background-color:#f7f7f7;border-top:1px solid #e0e0e0}.flex-content,article img,article video,article .flash-video{max-width:100%;height:auto}.basic-alignment.left,article img.left,article video.left,article .left.flash-video{float:left;margin-right:1.5em}.basic-alignment.right,article img.right,article video.right,article .right.flash-video{float:right;margin-left:1.5em}.basic-alignment.center,article img.center,article video.center,article .center.flash-video{display:block;margin:0 auto 1.5em}.basic-alignment.left,article img.left,article video.left,article .left.flash-video,.basic-alignment.right,article img.right,article video.right,article .right.flash-video{margin-bottom:.8em}.toggle-sidebar,.no-sidebar .toggle-sidebar{display:none}@media only screen and (min-width: 750px){body.sidebar-footer aside.sidebar{float:none;width:auto;clear:left;margin:0;padding:0 35px 1px;background-color:#f7f7f7;border-top:1px solid #eaeaea}body.sidebar-footer aside.sidebar section.odd,body.sidebar-footer aside.sidebar section.even{float:left;width:48%}body.sidebar-footer aside.sidebar section.odd{margin-left:0}body.sidebar-footer aside.sidebar section.even{margin-left:4%}body.sidebar-footer aside.sidebar.thirds section{width:30%;margin-left:5%}body.sidebar-footer aside.sidebar.thirds section.first{margin-left:0;clear:both}}body.sidebar-footer #content{margin-right:0px}body.sidebar-footer .toggle-sidebar{display:none}@media only screen and (min-width: 550px){body>header{font-size:1em}}@media only screen and (min-width: 750px){aside.sidebar{float:none;width:auto;clear:left;margin:0;padding:0 35px 1px;background-color:#f7f7f7;border-top:1px solid #eaeaea}aside.sidebar section.odd,aside.sidebar section.even{float:left;width:48%}aside.sidebar section.odd{margin-left:0}aside.sidebar section.even{margin-left:4%}aside.sidebar.thirds section{width:30%;margin-left:5%}aside.sidebar.thirds section.first{margin-left:0;clear:both}}@media only screen and (min-width: 768px){body{-webkit-text-size-adjust:auto}body>header{font-size:1.2em}#main{padding:0;margin:0 auto}#content{overflow:visible;margin-right:240px;position:relative}.no-sidebar #content{margin-right:0;border-right:0}.collapse-sidebar #content{margin-right:20px}#content>div,#content>article{padding-top:17.5px;padding-bottom:17.5px;float:left}aside.sidebar{width:210px;padding:0 15px 15px;background:none;clear:none;float:left;margin:0 -100% 0 0}aside.sidebar section{width:auto;margin-left:0}aside.sidebar section.odd,aside.sidebar section.even{float:none;width:auto;margin-left:0}.collapse-sidebar aside.sidebar{float:none;width:auto;clear:left;margin:0;padding:0 35px 1px;background-color:#f7f7f7;border-top:1px solid #eaeaea}.collapse-sidebar aside.sidebar section.odd,.collapse-sidebar aside.sidebar section.even{float:left;width:48%}.collapse-sidebar aside.sidebar section.odd{margin-left:0}.collapse-sidebar aside.sidebar section.even{margin-left:4%}.collapse-sidebar aside.sidebar.thirds section{width:30%;margin-left:5%}.collapse-sidebar aside.sidebar.thirds section.first{margin-left:0;clear:both}}@media only screen and (min-width: 992px){body>header{font-size:1.3em}#content{margin-right:300px}#content>div,#content>article{padding-top:27.5px;padding-bottom:27.5px}aside.sidebar{width:260px;padding:1.2em 20px 20px}.collapse-sidebar aside.sidebar{padding-left:55px;padding-right:55px}}@media only screen and (min-width: 768px){ul,ol{margin-left:0}}body>header{background:#333}body>header h1{display:inline-block;margin:0}body>header h1 a,body>header h1 a:visited,body>header h1 a:hover{color:#f2f2f2;text-decoration:none}body>header h2{margin:.2em 0 0;font-size:1em;color:#aaa;font-weight:normal}body>nav{position:relative;background-color:#ccc;background:url('/images/noise.png?1409989712'),url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2UwZTBlMCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjY2NjY2NjIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYjBiMGIwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');background:url('/images/noise.png?1409989712'),-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e0e0e0),color-stop(50%, #cccccc),color-stop(100%, #b0b0b0));background:url('/images/noise.png?1409989712'),-moz-linear-gradient(#e0e0e0,#cccccc,#b0b0b0);background:url('/images/noise.png?1409989712'),-webkit-linear-gradient(#e0e0e0,#cccccc,#b0b0b0);background:url('/images/noise.png?1409989712'),linear-gradient(#e0e0e0,#cccccc,#b0b0b0);padding-top:.35em;padding-bottom:.35em}body>nav form{-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;margin:0;padding:0}body>nav form .search{padding:.3em .5em 0;font-size:.85em;font-family:"Cabin","Helvetica Neue",Arial,sans-serif;line-height:1.1em;width:95%;-moz-border-radius:0.5em;-webkit-border-radius:0.5em;border-radius:0.5em;-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;-moz-box-shadow:#d1d1d1 0 1px;-webkit-box-shadow:#d1d1d1 0 1px;box-shadow:#d1d1d1 0 1px;background-color:#f2f2f2;border:1px solid #b3b3b3;color:#888}body>nav form .search:focus{color:#444;border-color:#80b1df;-moz-box-shadow:#80b1df 0 0 4px,#80b1df 0 0 3px inset;-webkit-box-shadow:#80b1df 0 0 4px,#80b1df 0 0 3px inset;box-shadow:#80b1df 0 0 4px,#80b1df 0 0 3px inset;background-color:#fff;outline:none}body>nav fieldset[role=search]{float:right;width:48%}body>nav fieldset.mobile-nav{float:left;width:48%}body>nav fieldset.mobile-nav select{width:100%;font-size:.8em;border:1px solid #888}body>nav ul{display:none}@media only screen and (min-width: 550px){body>nav{font-size:.9em}body>nav ul{margin:0;padding:0;border:0;overflow:hidden;*zoom:1;float:none;display:block;padding-top:.15em}body>nav ul li{list-style-image:none;list-style-type:none;margin-left:0;white-space:nowrap;float:left;padding-left:0;padding-right:0}body>nav ul li:first-child{padding-left:0}body>nav ul li:last-child{padding-right:0}body>nav ul li.last{padding-right:0}body>nav ul.subscription{margin-left:.8em;float:right}body>nav ul.subscription li:last-child a{padding-right:0}body>nav ul li{margin:0}body>nav a{color:#6b6b6b;font-family:"Cabin","Helvetica Neue",Arial,sans-serif;text-shadow:#ebebeb 0 1px;float:left;text-decoration:none;font-size:1.1em;padding:.1em 0;line-height:1.5em;text-align:center}body>nav a:visited{color:#6b6b6b}body>nav a:hover{color:#2b2b2b}body>nav li+li{border-left:1px solid #b0b0b0;margin-left:.8em}body>nav li+li a{padding-left:.8em;border-left:1px solid #dedede}body>nav form{float:right;text-align:left;padding-left:.8em;width:175px}body>nav form .search{width:93%;font-size:.95em;line-height:1.2em}body>nav ul[data-subscription$=email]+form{width:97px}body>nav ul[data-subscription$=email]+form .search{width:91%}body>nav fieldset.mobile-nav{display:none}body>nav fieldset[role=search]{width:99%}}@media only screen and (min-width: 992px){body>nav form{width:215px}body>nav ul[data-subscription$=email]+form{width:147px}}.no-placeholder body>nav .search{background:#f2f2f2 url('/images/search.png?1409989712') 0.3em 0.25em no-repeat;text-indent:1.3em}@media only screen and (min-width: 550px){.maskImage body>nav ul[data-subscription$=email]+form{width:123px}}@media only screen and (min-width: 992px){.maskImage body>nav ul[data-subscription$=email]+form{width:173px}}.maskImage ul.subscription{position:relative;top:.2em}.maskImage ul.subscription li,.maskImage ul.subscription a{border:0;padding:0}.maskImage a[rel=subscribe-rss]{position:relative;top:0px;text-indent:-999999em;background-color:#dedede;border:0;padding:0}.maskImage a[rel=subscribe-rss],.maskImage a[rel=subscribe-rss]:after{-webkit-mask-image:url('/images/rss.png?1409989712');-moz-mask-image:url('/images/rss.png?1409989712');-ms-mask-image:url('/images/rss.png?1409989712');-o-mask-image:url('/images/rss.png?1409989712');mask-image:url('/images/rss.png?1409989712');-webkit-mask-repeat:no-repeat;-moz-mask-repeat:no-repeat;-ms-mask-repeat:no-repeat;-o-mask-repeat:no-repeat;mask-repeat:no-repeat;width:22px;height:22px}.maskImage a[rel=subscribe-rss]:after{content:"";position:absolute;top:-1px;left:0;background-color:#ababab}.maskImage a[rel=subscribe-rss]:hover:after{background-color:#9e9e9e}.maskImage a[rel=subscribe-email]{position:relative;top:0px;text-indent:-999999em;background-color:#dedede;border:0;padding:0}.maskImage a[rel=subscribe-email],.maskImage a[rel=subscribe-email]:after{-webkit-mask-image:url('/images/email.png?1409989712');-moz-mask-image:url('/images/email.png?1409989712');-ms-mask-image:url('/images/email.png?1409989712');-o-mask-image:url('/images/email.png?1409989712');mask-image:url('/images/email.png?1409989712');-webkit-mask-repeat:no-repeat;-moz-mask-repeat:no-repeat;-ms-mask-repeat:no-repeat;-o-mask-repeat:no-repeat;mask-repeat:no-repeat;width:28px;height:22px}.maskImage a[rel=subscribe-email]:after{content:"";position:absolute;top:-1px;left:0;background-color:#ababab}.maskImage a[rel=subscribe-email]:hover:after{background-color:#9e9e9e}article{padding-top:1em}article header{position:relative;padding-top:2em;padding-bottom:1em;margin-bottom:1em;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') bottom left repeat-x}article header h1{margin:0}article header h1 a{text-decoration:none}article header h1 a:hover{text-decoration:underline}article header p{font-size:.9em;color:#aaa;margin:0}article header p.meta{text-transform:uppercase;position:absolute;top:0}@media only screen and (min-width: 768px){article header{margin-bottom:1.5em;padding-bottom:1em;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') bottom left repeat-x}}article h2{padding-top:0.8em;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') top left repeat-x}.entry-content article h2:first-child,article header+h2{padding-top:0}article h2:first-child,article header+h2{background:none}article .feature{padding-top:.5em;margin-bottom:1em;padding-bottom:1em;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') bottom left repeat-x;font-size:2.0em;font-style:italic;line-height:1.3em}article img,article video,article .flash-video{-moz-border-radius:0.3em;-webkit-border-radius:0.3em;border-radius:0.3em;-moz-box-shadow:rgba(0,0,0,0.15) 0 1px 4px;-webkit-box-shadow:rgba(0,0,0,0.15) 0 1px 4px;box-shadow:rgba(0,0,0,0.15) 0 1px 4px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:#fff 0.5em solid}article video,article .flash-video{margin:0 auto 1.5em}article video{display:block;width:100%}article .flash-video>div{position:relative;display:block;padding-bottom:56.25%;padding-top:1px;height:0;overflow:hidden}article .flash-video>div iframe,article .flash-video>div object,article .flash-video>div embed{position:absolute;top:0;left:0;width:100%;height:100%}article>footer{padding-bottom:1em;margin-top:2em}article>footer p.meta{margin-bottom:.8em;font-size:.85em;clear:both;overflow:hidden}.blog-index article+article{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') top left repeat-x}#content .blog-index{padding-top:0;padding-bottom:0}#content .blog-index article{padding-top:2em}#content .blog-index article header{background:none;padding-bottom:0}#content .blog-index article h1{font-size:2.2em}#content .blog-index article h1 a{color:inherit}#content .blog-index article h1 a:hover{color:#0181eb}#content .blog-index a[rel=full-article]{background:#ebebeb;display:inline-block;padding:.4em .8em;margin-right:.5em;text-decoration:none;color:#666;-moz-transition:background-color 0.5s;-o-transition:background-color 0.5s;-webkit-transition:background-color 0.5s;transition:background-color 0.5s}#content .blog-index a[rel=full-article]:hover{background:#0181eb;text-shadow:none;color:#f8f8f8}#content .blog-index footer{margin-top:1em}.separator,article>footer .byline+time:before,article>footer time+time:before,article>footer .comments:before,article>footer .byline ~ .categories:before{content:"\2022 ";padding:0 .4em 0 .2em;display:inline-block}#content div.pagination{text-align:center;font-size:.95em;position:relative;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') top left repeat-x;padding-top:1.5em;padding-bottom:1.5em}#content div.pagination a{text-decoration:none;color:#aaa}#content div.pagination a.prev{position:absolute;left:0}#content div.pagination a.next{position:absolute;right:0}#content div.pagination a:hover{color:#0181eb}#content div.pagination a[href*=archive]:before,#content div.pagination a[href*=archive]:after{content:'\2014';padding:0 .3em}.highlight,html .gist .gist-file .gist-syntax .gist-highlight{border:1px solid #05232b !important}.highlight table td.code,html .gist .gist-file .gist-syntax .gist-highlight table td.code{width:100%}.highlight .line-numbers,html .gist .gist-file .gist-syntax .highlight .line_numbers{text-align:right;font-size:13px;line-height:1.45em;background:#073642 url('/images/noise.png?1409989712') top left !important;border-right:1px solid #00232c !important;-moz-box-shadow:#083e4b -1px 0 inset;-webkit-box-shadow:#083e4b -1px 0 inset;box-shadow:#083e4b -1px 0 inset;text-shadow:#021014 0 -1px;padding:.8em !important;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.highlight .line-numbers span,html .gist .gist-file .gist-syntax .highlight .line_numbers span{color:#586e75 !important}figure.code,.gist-file,pre{-moz-box-shadow:rgba(0,0,0,0.06) 0 0 10px;-webkit-box-shadow:rgba(0,0,0,0.06) 0 0 10px;box-shadow:rgba(0,0,0,0.06) 0 0 10px}figure.code .highlight pre,.gist-file .highlight pre,pre .highlight pre{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.gist .highlight *::-moz-selection,figure.code .highlight *::-moz-selection{background:#386774;color:inherit;text-shadow:#002b36 0 1px}.gist .highlight *::-webkit-selection,figure.code .highlight *::-webkit-selection{background:#386774;color:inherit;text-shadow:#002b36 0 1px}.gist .highlight *::selection,figure.code .highlight *::selection{background:#386774;color:inherit;text-shadow:#002b36 0 1px}html .gist .gist-file{margin-bottom:1.8em;position:relative;border:none;padding-top:26px !important}html .gist .gist-file .highlight{margin-bottom:0}html .gist .gist-file .gist-syntax{border-bottom:0 !important;background:none !important}html .gist .gist-file .gist-syntax .gist-highlight{background:#002b36 !important}html .gist .gist-file .gist-syntax .highlight pre{padding:0}html .gist .gist-file .gist-meta{padding:.6em 0.8em;border:1px solid #083e4b !important;color:#586e75;font-size:.7em !important;background:#073642 url('/images/noise.png?1409989712') top left;line-height:1.5em}html .gist .gist-file .gist-meta a{color:#75878b !important;text-decoration:none}html .gist .gist-file .gist-meta a:hover,html .gist .gist-file .gist-meta a:focus{text-decoration:underline}html .gist .gist-file .gist-meta a:hover{color:#93a1a1 !important}html .gist .gist-file .gist-meta a[href*='#file']{position:absolute;top:0;left:0;right:-10px;color:#474747 !important}html .gist .gist-file .gist-meta a[href*='#file']:hover{color:#1863a1 !important}html .gist .gist-file .gist-meta a[href*=raw]{top:.4em}pre{background:#002b36 url('/images/noise.png?1409989712') top left;-moz-border-radius:0.4em;-webkit-border-radius:0.4em;border-radius:0.4em;border:1px solid #05232b;line-height:1.45em;font-size:13px;margin-bottom:2.1em;padding:.8em 1em;color:#93a1a1;overflow:auto}h3.filename+pre{-moz-border-radius-topleft:0px;-webkit-border-top-left-radius:0px;border-top-left-radius:0px;-moz-border-radius-topright:0px;-webkit-border-top-right-radius:0px;border-top-right-radius:0px}p code,li code{display:inline-block;white-space:no-wrap;font-size:.8em;line-height:1.5em;color:#555;padding:0 .3em;margin:-1px 0}p pre code,li pre code{font-size:1em !important;background:none;border:none}.pre-code,html .gist .gist-file .gist-syntax .highlight pre,.highlight code{font-family:Menlo,Monaco,"Andale Mono","lucida console","Courier New",monospace !important;overflow:scroll;overflow-y:hidden;display:block;padding:.8em;overflow-x:auto;line-height:1.45em;background:#002b36 url('/images/noise.png?1409989712') top left !important;color:#93a1a1 !important}.pre-code span,html .gist .gist-file .gist-syntax .highlight pre span,.highlight code span{color:#93a1a1 !important}.pre-code span,html .gist .gist-file .gist-syntax .highlight pre span,.highlight code span{font-style:normal !important;font-weight:normal !important}.pre-code .c,html .gist .gist-file .gist-syntax .highlight pre .c,.highlight code .c{color:#586e75 !important;font-style:italic !important}.pre-code .cm,html .gist .gist-file .gist-syntax .highlight pre .cm,.highlight code .cm{color:#586e75 !important;font-style:italic !important}.pre-code .cp,html .gist .gist-file .gist-syntax .highlight pre .cp,.highlight code .cp{color:#586e75 !important;font-style:italic !important}.pre-code .c1,html .gist .gist-file .gist-syntax .highlight pre .c1,.highlight code .c1{color:#586e75 !important;font-style:italic !important}.pre-code .cs,html .gist .gist-file .gist-syntax .highlight pre .cs,.highlight code .cs{color:#586e75 !important;font-weight:bold !important;font-style:italic !important}.pre-code .err,html .gist .gist-file .gist-syntax .highlight pre .err,.highlight code .err{color:#dc322f !important;background:none !important}.pre-code .k,html .gist .gist-file .gist-syntax .highlight pre .k,.highlight code .k{color:#cb4b16 !important}.pre-code .o,html .gist .gist-file .gist-syntax .highlight pre .o,.highlight code .o{color:#93a1a1 !important;font-weight:bold !important}.pre-code .p,html .gist .gist-file .gist-syntax .highlight pre .p,.highlight code .p{color:#93a1a1 !important}.pre-code .ow,html .gist .gist-file .gist-syntax .highlight pre .ow,.highlight code .ow{color:#2aa198 !important;font-weight:bold !important}.pre-code .gd,html .gist .gist-file .gist-syntax .highlight pre .gd,.highlight code .gd{color:#93a1a1 !important;background-color:#372c34 !important;display:inline-block}.pre-code .gd .x,html .gist .gist-file .gist-syntax .highlight pre .gd .x,.highlight code .gd .x{color:#93a1a1 !important;background-color:#4d2d33 !important;display:inline-block}.pre-code .ge,html .gist .gist-file .gist-syntax .highlight pre .ge,.highlight code .ge{color:#93a1a1 !important;font-style:italic !important}.pre-code .gh,html .gist .gist-file .gist-syntax .highlight pre .gh,.highlight code .gh{color:#586e75 !important}.pre-code .gi,html .gist .gist-file .gist-syntax .highlight pre .gi,.highlight code .gi{color:#93a1a1 !important;background-color:#1a412b !important;display:inline-block}.pre-code .gi .x,html .gist .gist-file .gist-syntax .highlight pre .gi .x,.highlight code .gi .x{color:#93a1a1 !important;background-color:#355720 !important;display:inline-block}.pre-code .gs,html .gist .gist-file .gist-syntax .highlight pre .gs,.highlight code .gs{color:#93a1a1 !important;font-weight:bold !important}.pre-code .gu,html .gist .gist-file .gist-syntax .highlight pre .gu,.highlight code .gu{color:#6c71c4 !important}.pre-code .kc,html .gist .gist-file .gist-syntax .highlight pre .kc,.highlight code .kc{color:#859900 !important;font-weight:bold !important}.pre-code .kd,html .gist .gist-file .gist-syntax .highlight pre .kd,.highlight code .kd{color:#268bd2 !important}.pre-code .kp,html .gist .gist-file .gist-syntax .highlight pre .kp,.highlight code .kp{color:#cb4b16 !important;font-weight:bold !important}.pre-code .kr,html .gist .gist-file .gist-syntax .highlight pre .kr,.highlight code .kr{color:#d33682 !important;font-weight:bold !important}.pre-code .kt,html .gist .gist-file .gist-syntax .highlight pre .kt,.highlight code .kt{color:#2aa198 !important}.pre-code .n,html .gist .gist-file .gist-syntax .highlight pre .n,.highlight code .n{color:#268bd2 !important}.pre-code .na,html .gist .gist-file .gist-syntax .highlight pre .na,.highlight code .na{color:#268bd2 !important}.pre-code .nb,html .gist .gist-file .gist-syntax .highlight pre .nb,.highlight code .nb{color:#859900 !important}.pre-code .nc,html .gist .gist-file .gist-syntax .highlight pre .nc,.highlight code .nc{color:#d33682 !important}.pre-code .no,html .gist .gist-file .gist-syntax .highlight pre .no,.highlight code .no{color:#b58900 !important}.pre-code .nl,html .gist .gist-file .gist-syntax .highlight pre .nl,.highlight code .nl{color:#859900 !important}.pre-code .ne,html .gist .gist-file .gist-syntax .highlight pre .ne,.highlight code .ne{color:#268bd2 !important;font-weight:bold !important}.pre-code .nf,html .gist .gist-file .gist-syntax .highlight pre .nf,.highlight code .nf{color:#268bd2 !important;font-weight:bold !important}.pre-code .nn,html .gist .gist-file .gist-syntax .highlight pre .nn,.highlight code .nn{color:#b58900 !important}.pre-code .nt,html .gist .gist-file .gist-syntax .highlight pre .nt,.highlight code .nt{color:#268bd2 !important;font-weight:bold !important}.pre-code .nx,html .gist .gist-file .gist-syntax .highlight pre .nx,.highlight code .nx{color:#b58900 !important}.pre-code .vg,html .gist .gist-file .gist-syntax .highlight pre .vg,.highlight code .vg{color:#268bd2 !important}.pre-code .vi,html .gist .gist-file .gist-syntax .highlight pre .vi,.highlight code .vi{color:#268bd2 !important}.pre-code .nv,html .gist .gist-file .gist-syntax .highlight pre .nv,.highlight code .nv{color:#268bd2 !important}.pre-code .mf,html .gist .gist-file .gist-syntax .highlight pre .mf,.highlight code .mf{color:#2aa198 !important}.pre-code .m,html .gist .gist-file .gist-syntax .highlight pre .m,.highlight code .m{color:#2aa198 !important}.pre-code .mh,html .gist .gist-file .gist-syntax .highlight pre .mh,.highlight code .mh{color:#2aa198 !important}.pre-code .mi,html .gist .gist-file .gist-syntax .highlight pre .mi,.highlight code .mi{color:#2aa198 !important}.pre-code .s,html .gist .gist-file .gist-syntax .highlight pre .s,.highlight code .s{color:#2aa198 !important}.pre-code .sd,html .gist .gist-file .gist-syntax .highlight pre .sd,.highlight code .sd{color:#2aa198 !important}.pre-code .s2,html .gist .gist-file .gist-syntax .highlight pre .s2,.highlight code .s2{color:#2aa198 !important}.pre-code .se,html .gist .gist-file .gist-syntax .highlight pre .se,.highlight code .se{color:#dc322f !important}.pre-code .si,html .gist .gist-file .gist-syntax .highlight pre .si,.highlight code .si{color:#268bd2 !important}.pre-code .sr,html .gist .gist-file .gist-syntax .highlight pre .sr,.highlight code .sr{color:#2aa198 !important}.pre-code .s1,html .gist .gist-file .gist-syntax .highlight pre .s1,.highlight code .s1{color:#2aa198 !important}.pre-code div .gd,html .gist .gist-file .gist-syntax .highlight pre div .gd,.highlight code div .gd,.pre-code div .gd .x,html .gist .gist-file .gist-syntax .highlight pre div .gd .x,.highlight code div .gd .x,.pre-code div .gi,html .gist .gist-file .gist-syntax .highlight pre div .gi,.highlight code div .gi,.pre-code div .gi .x,html .gist .gist-file .gist-syntax .highlight pre div .gi .x,.highlight code div .gi .x{display:inline-block;width:100%}.highlight,.gist-highlight{margin-bottom:1.8em;background:#002b36;overflow-y:hidden;overflow-x:auto}.highlight pre,.gist-highlight pre{background:none;-moz-border-radius:0px;-webkit-border-radius:0px;border-radius:0px;border:none;padding:0;margin-bottom:0}pre::-webkit-scrollbar,.highlight::-webkit-scrollbar,.gist-highlight::-webkit-scrollbar{height:.5em;background:rgba(255,255,255,0.15)}pre::-webkit-scrollbar-thumb:horizontal,.highlight::-webkit-scrollbar-thumb:horizontal,.gist-highlight::-webkit-scrollbar-thumb:horizontal{background:rgba(255,255,255,0.2);-webkit-border-radius:4px;border-radius:4px}.highlight code{background:#000}figure.code{background:none;padding:0;border:0;margin-bottom:1.5em}figure.code pre{margin-bottom:0}figure.code figcaption{position:relative}figure.code .highlight{margin-bottom:0}.code-title,html .gist .gist-file .gist-meta a[href*='#file'],h3.filename,figure.code figcaption{text-align:center;font-size:13px;line-height:2em;text-shadow:#cbcccc 0 1px 0;color:#474747;font-weight:normal;margin-bottom:0;-moz-border-radius-topleft:5px;-webkit-border-top-left-radius:5px;border-top-left-radius:5px;-moz-border-radius-topright:5px;-webkit-border-top-right-radius:5px;border-top-right-radius:5px;font-family:"Cabin","Helvetica Neue",Arial,sans-serif;background:#aaa url('/images/code_bg.png?1409989712') top repeat-x;border:1px solid #565656;border-top-color:#cbcbcb;border-left-color:#a5a5a5;border-right-color:#a5a5a5;border-bottom:0}.download-source,html .gist .gist-file .gist-meta a[href*=raw],figure.code figcaption a{position:absolute;right:.8em;text-decoration:none;color:#666 !important;z-index:1;font-size:13px;text-shadow:#cbcccc 0 1px 0;padding-left:3em}.download-source:hover,html .gist .gist-file .gist-meta a[href*=raw]:hover,figure.code figcaption a:hover,.download-source:focus,html .gist .gist-file .gist-meta a[href*=raw]:focus,figure.code figcaption a:focus{text-decoration:underline}#archive #content>div,#archive #content>div>article{padding-top:0}#blog-archives{color:#aaa}#blog-archives article{padding:1em 0 1em;position:relative;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') bottom left repeat-x}#blog-archives article:last-child{background:none}#blog-archives article footer{padding:0;margin:0}#blog-archives h1{color:#222;margin-bottom:.3em}#blog-archives h2{display:none}#blog-archives h1{font-size:1.5em}#blog-archives h1 a{text-decoration:none;color:inherit;font-weight:normal;display:inline-block}#blog-archives h1 a:hover,#blog-archives h1 a:focus{text-decoration:underline}#blog-archives h1 a:hover{color:#0181eb}#blog-archives a.category,#blog-archives time{color:#aaa}#blog-archives .entry-content{display:none}#blog-archives time{font-size:.9em;line-height:1.2em}#blog-archives time .month,#blog-archives time .day{display:inline-block}#blog-archives time .month{text-transform:uppercase}#blog-archives p{margin-bottom:1em}#blog-archives a,#blog-archives .entry-content a{color:inherit}#blog-archives a:hover,#blog-archives .entry-content a:hover{color:#0181eb}#blog-archives a:hover{color:#0181eb}@media only screen and (min-width: 550px){#blog-archives article{margin-left:5em}#blog-archives h2{margin-bottom:.3em;font-weight:normal;display:inline-block;position:relative;top:-1px;float:left}#blog-archives h2:first-child{padding-top:.75em}#blog-archives time{position:absolute;text-align:right;left:0em;top:1.8em}#blog-archives .year{display:none}#blog-archives article{padding-left:4.5em;padding-bottom:.7em}#blog-archives a.category{line-height:1.1em}}#content>.category article{margin-left:0;padding-left:6.8em}#content>.category .year{display:inline}body>footer{font-size:.8em;color:#888;text-shadow:#d9d9d9 0 1px;background-color:#ccc;background:url('/images/noise.png?1409989712'),url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2UwZTBlMCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjY2NjY2NjIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYjBiMGIwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');background:url('/images/noise.png?1409989712'),-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e0e0e0),color-stop(50%, #cccccc),color-stop(100%, #b0b0b0));background:url('/images/noise.png?1409989712'),-moz-linear-gradient(#e0e0e0,#cccccc,#b0b0b0);background:url('/images/noise.png?1409989712'),-webkit-linear-gradient(#e0e0e0,#cccccc,#b0b0b0);background:url('/images/noise.png?1409989712'),linear-gradient(#e0e0e0,#cccccc,#b0b0b0);border-top:1px solid #f2f2f2;position:relative;padding-top:1em;padding-bottom:1em;margin-bottom:3em;-moz-border-radius-bottomleft:0.4em;-webkit-border-bottom-left-radius:0.4em;border-bottom-left-radius:0.4em;-moz-border-radius-bottomright:0.4em;-webkit-border-bottom-right-radius:0.4em;border-bottom-right-radius:0.4em;z-index:1}body>footer a{color:#6b6b6b}body>footer a:visited{color:#6b6b6b}body>footer a:hover{color:#484848}body>footer p:last-child{margin-bottom:0}html{background:url("/images/noise.png") repeat scroll left top #fafafa}body{font-family:"Cabin","Helvetica Neue",Arial,sans-serif !important;font-size:1em;max-width:750px;padding-left:0.5em;padding-right:0.5em}body>header{background:url("/images/noise.png") repeat scroll left top #fafafa;text-align:center;padding-left:0px;padding-right:0px}body>header h1 a,body>header h1 a:visited,body>header h1 a:hover{color:#8C8C8C;font-family:"Cabin","Helvetica Neue",Arial,sans-serif}body>nav{background:url("/images/noise.png") repeat scroll left top #fafafa;padding-left:0px;padding-right:0px}body>nav form .search{border-radius:0.2em 0.2em 0.2em 0.2em;box-shadow:none;border:0px;padding-top:0.3em;padding-bottom:0.3em;padding-left:0.5em;padding-right:0.5em}body>nav a{font-family:"Cabin","Helvetica Neue",Arial,sans-serif;font-size:1.2em;padding-top:0.3em;line-height:1.5em}body>nav li+li{border-left:0px}body>nav li+li a{border-left:0px}body>div{background:url("/images/noise.png") repeat scroll left top #fafafa;border-bottom:0px}body>div>div{background:url("/images/noise.png") repeat scroll left top #fafafa;border-right-width:0px}body>footer{background:url("/images/noise.png") repeat scroll left top #fafafa;text-shadow:none;color:#8C8C8C;padding-left:0;padding-right:0;border-top:0px;padding-left:0px;padding-right:0px;font-size:1em}body #content>article{padding-left:0px;padding-right:0px}body #content>div>article,body #content>div>section{padding-left:0px;padding-right:0px}article{padding-top:2em}article .entry-content h3{font-style:italic}article ul,article ol{margin-left:2em}article a,article a:visited{color:#1863A1}article header h1.entry-title{font-family:"Cabin","Helvetica Neue",Arial,sans-serif;font-weight:400}#content div.pagination{background:none repeat scroll 0 0 transparent;margin:0 10px;font-size:0.95em;padding-bottom:1.5em;margin-top:4em;position:relative;text-align:center;border-top:dotted 1px #D1D1D1;border-bottom:dotted 1px #D1D1D1}#content .blog-index article{padding-top:4em}#content .blog-index article header{padding-left:0;padding-right:0}#content .blog-index h1 a{font-family:"Cabin","Helvetica Neue",Arial,sans-serif;font-weight:400}#content .blog-index h1 a:hover{text-decoration:none}#content .hentry h1.entry-title{font-family:"Cabin","Helvetica Neue",Arial,sans-serif;font-weight:400;font-size:2.2em}figure.code .highlight{background:#212C3B !important}figure.code .highlight .gutter{display:none}.pre-code,html .gist .gist-file .gist-syntax .highlight pre,.highlight code,html .gist .gist-file .gist-syntax .highlight pre,.highlight code{background:#212C3B !important}aside{display:none}figure{margin-bottom:1.5em}figure figcaption{text-align:center;color:#888}figure figcaption i{font-style:italic}.entry-content p,.entry-content li{text-align:justify;hyphens:auto;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto}
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "greyjoy_ink"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,13 @@
1
+ require 'greyjoy_ink/version'
2
+ require 'octopress-ink'
3
+
4
+ Octopress::Ink.add_theme({
5
+ name: "Greyjoy Ink",
6
+ slug: "theme",
7
+ gem: "greyjoy_ink",
8
+ path: File.expand_path(File.join(File.dirname(__FILE__), "..")),
9
+ version: GreyjoyInk::VERSION,
10
+ description: "", # What does your theme/plugin do?
11
+ source_url: "https://github.com/user/project", # <- Update info
12
+ website: "" # Optional project website
13
+ })
@@ -0,0 +1,3 @@
1
+ module GreyjoyInk
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,190 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: greyjoy_ink
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Christopher R. Miller
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-05-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.9'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.9'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: clash
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: sass
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: compass
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: octopress-ink
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.1'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.1'
97
+ - !ruby/object:Gem::Dependency
98
+ name: octopress-filters
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description:
112
+ email:
113
+ - lordsauronthegreat@gmail.com
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - LICENSE.txt
119
+ - README.md
120
+ - assets/config.yml
121
+ - assets/includes/after_footer.html
122
+ - assets/includes/archive_post.html
123
+ - assets/includes/article.html
124
+ - assets/includes/article_excerpt.html
125
+ - assets/includes/asides/about.html
126
+ - assets/includes/asides/book.html
127
+ - assets/includes/asides/delicious.html
128
+ - assets/includes/asides/github.html
129
+ - assets/includes/asides/googleplus.html
130
+ - assets/includes/asides/pinboard.html
131
+ - assets/includes/asides/recent_posts.html
132
+ - assets/includes/asides/twitter.html
133
+ - assets/includes/custom/after_footer.html
134
+ - assets/includes/custom/category_feed.xml
135
+ - assets/includes/custom/footer.html
136
+ - assets/includes/custom/head.html
137
+ - assets/includes/custom/header.html
138
+ - assets/includes/custom/navigation.html
139
+ - assets/includes/footer.html
140
+ - assets/includes/head.html
141
+ - assets/includes/header.html
142
+ - assets/includes/navigation.html
143
+ - assets/includes/post/#related_posts.html#
144
+ - assets/includes/post/author.html
145
+ - assets/includes/post/categories.html
146
+ - assets/includes/post/date.html
147
+ - assets/includes/post/disqus_thread.html
148
+ - assets/includes/post/juvia_thread.html
149
+ - assets/includes/post/sharing.html
150
+ - assets/layouts/category_index.html
151
+ - assets/layouts/default.html
152
+ - assets/layouts/default_naked.html
153
+ - assets/layouts/index.html
154
+ - assets/layouts/page.html
155
+ - assets/layouts/page_naked.html
156
+ - assets/layouts/post.html
157
+ - assets/pages/404.markdown
158
+ - assets/pages/blog/archives/index.html
159
+ - assets/pages/index.html
160
+ - assets/stylesheets/screen.css
161
+ - bin/console
162
+ - bin/setup
163
+ - lib/greyjoy_ink.rb
164
+ - lib/greyjoy_ink/version.rb
165
+ homepage: https://github.com/mysteriouspants/greyjoy_ink
166
+ licenses:
167
+ - MIT
168
+ metadata:
169
+ allowed_push_host: https://rubygems.org
170
+ post_install_message:
171
+ rdoc_options: []
172
+ require_paths:
173
+ - lib
174
+ required_ruby_version: !ruby/object:Gem::Requirement
175
+ requirements:
176
+ - - ">="
177
+ - !ruby/object:Gem::Version
178
+ version: '0'
179
+ required_rubygems_version: !ruby/object:Gem::Requirement
180
+ requirements:
181
+ - - ">="
182
+ - !ruby/object:Gem::Version
183
+ version: '0'
184
+ requirements: []
185
+ rubyforge_project:
186
+ rubygems_version: 2.4.5
187
+ signing_key:
188
+ specification_version: 4
189
+ summary: Octopress Ink theme based on Reza Jatnika's Jekyll theme.
190
+ test_files: []