~xdavidwu/xdavidwu.link

985a6fd47d6d6b966ba654abecd06529e89a577d — andreykurenkov 8 years ago 0498eb1 + eddc18c
Merged improvement to post-index.html
M 404.md => 404.md +2 -2
@@ 4,7 4,7 @@ title: "Page Not Found"
excerpt: "Page not found. Your pixels are in another canvas."
sitemap: false
permalink: /404.html
---  
---

Sorry, but the page you were trying to view does not exist --- perhaps you can try searching for it below.



@@ 14,4 14,4 @@ Sorry, but the page you were trying to view does not exist --- perhaps you can t
</script>
<script type="text/javascript"
  src="//linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js">
</script>
\ No newline at end of file
</script>

M Gemfile => Gemfile +1 -1
@@ 2,4 2,4 @@ source 'https://rubygems.org'

gem 'jekyll'
gem 'jekyll-sitemap'
gem 'octopress', '~> 3.0.0.rc.12'
\ No newline at end of file
gem 'octopress', '~> 3.0.0.rc.12'

M README.md => README.md +3 -3
@@ 1,11 1,11 @@
# Minimal Mistakes

**[Minimal Mistakes](http://mmistakes.github.io/minimal-mistakes)** is a two column responsive Jekyll theme perfect for powering your GitHub hosted blog. 
**[Minimal Mistakes](http://mmistakes.github.io/minimal-mistakes)** is a two column responsive Jekyll theme perfect for powering your GitHub hosted blog.

## Minimal Mistakes is all about:

* Responsive templates. Looking good on mobile, tablet, and desktop.
* Gracefully degrading in older browsers. Compatible with Internet Explorer 8+ and all modern browsers. 
* Gracefully degrading in older browsers. Compatible with Internet Explorer 8+ and all modern browsers.
* Minimal embellishments -- content first.
* Optional large feature images for posts and pages.
* Simple and clear permalink structure.


@@ 20,4 20,4 @@ See a [live version of Minimal Mistakes](http://mmistakes.github.io/minimal-mist

Minimal Mistakes takes advantage of Sass and data files to make customizing easier. These features require Jekyll 2.x and will not work with older versions of Jekyll.

To learn how to install and use this theme check out the [Setup Guide](http://mmistakes.github.io/minimal-mistakes/theme-setup/) for more information.
\ No newline at end of file
To learn how to install and use this theme check out the [Setup Guide](http://mmistakes.github.io/minimal-mistakes/theme-setup/) for more information.

M _config.yml => _config.yml +10 -9
@@ 2,7 2,7 @@

title:            Site Title
locale:           en_US
url:              
url:


# Jekyll configuration


@@ 29,19 29,19 @@ owner:
  name: Your Name
  avatar: bio-photo.jpg
  bio: "Describe your self."
  email: 
  disqus-shortname: 
  email:
  disqus-shortname:
  twitter: #username
  facebook: #username
  google:
    plus: #username
    analytics: 
    verify: 
    ad-client: 
    ad-slot: 
  bing-verify: 
    analytics:
    verify:
    ad-client:
    ad-slot:
  bing-verify:
  github: #username
  stackoverflow: #http://stackoverflow.com/users/123456/username
  stackoverflow: #123456/username   from a "http://stackoverflow.com/users/123456/username" link
  linkedin: #username
  xing: #username
  instagram: #username


@@ 55,6 55,7 @@ owner:
  soundcloud: #username
  weibo: #username
  flickr: #username
  codepen: #username

include: [".htaccess"]
exclude: ["lib", "config.rb", "Capfile", "config", "log", "Rakefile", "Rakefile.rb", "tmp", "less", "*.sublime-project", "*.sublime-workspace", "test", "spec", "Gruntfile.js", "package.json", "node_modules", "Gemfile", "Gemfile.lock", "LICENSE", "README.md"]

M _includes/_author-bio.html => _includes/_author-bio.html +1 -0
@@ 31,4 31,5 @@
  {% if author.soundcloud %}<a href="http://soundcloud.com/{{ author.soundcloud }}" class="author-social" target="_blank"><i class="fa fa-fw fa-soundcloud"></i> Soundcloud</a>{% endif %}
  {% if author.weibo %}<a href="http://www.weibo.com/{{ author.weibo }}" class="author-social" target="_blank"><i class="fa fa-fw fa-weibo"></i> Weibo</a>{% endif %}
  {% if author.flickr %}<a href="http://www.flickr.com/{{ author.flickr }}" class="author-social" target="_blank"><i class="fa fa-fw fa-flickr"></i> Flickr</a>{% endif %}
  {% if author.codepen %}<a href="http://codepen.io/{{ author.codepen }}" class="author-social" target="_blank"><i class="fa fa-fw fa-codepen"></i> CodePen</a>{% endif %}
</div>

M _includes/_scripts.html => _includes/_scripts.html +2 -2
@@ 5,7 5,7 @@
<!-- Asynchronous Google Analytics snippet -->
<script>
  var _gaq = _gaq || [];
  var pluginUrl = 
  var pluginUrl =
 '//www.google-analytics.com/plugins/ga/inpage_linkid.js';
  _gaq.push(['_require', 'inpage_linkid', pluginUrl]);
  _gaq.push(['_setAccount', '{{ site.owner.google.analytics }}']);


@@ 20,4 20,4 @@
{% endif %}
{% if page.comments %}
  {% include _disqus_comments.html %}
{% endif %}
\ No newline at end of file
{% endif %}

M _layouts/home.html => _layouts/home.html +3 -3
@@ 28,13 28,13 @@
  </div><!-- /.image-wrap -->
{% endif %}

<div id="main" role="main"> 
<div id="main" role="main">
  <div class="article-author-side">
    {% include _author-bio.html %}
  </div>
  <div id="index">
    <h3><a href="{{ site.url}}/posts/">Recent Posts</a></h3>
    {% for post in site.posts limit:5 %}    
    {% for post in site.posts limit:5 %}
    <article>
      {% if post.link %}
        <h2 class="link-post"><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a> <a href="{{ post.link }}" target="_blank" title="{{ post.title }}"><i class="fa fa-link"></i></h2>


@@ 54,6 54,6 @@
</div><!-- /.footer-wrap -->

{% include _scripts.html %}
  

</body>
</html>

M _layouts/page.html => _layouts/page.html +2 -2
@@ 53,7 53,7 @@
  </footer>
</div><!-- /.footer-wrap -->

{% include _scripts.html %}          
{% include _scripts.html %}

</body>
</html>
\ No newline at end of file
</html>

M _layouts/post-index.html => _layouts/post-index.html +2 -2
@@ 39,7 39,7 @@
      {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
      {% if year != written_year %}
        <h3>{{ year }}</h3>
      {% capture written_year %}{{ year }}{% endcapture %}
        {% capture written_year %}{{ year }}{% endcapture %}
      {% endif %}
      <article>
        {% if post.link %}


@@ 60,6 60,6 @@
</div><!-- /.footer-wrap -->

{% include _scripts.html %}
  

</body>
</html>

M _layouts/post.html => _layouts/post.html +2 -2
@@ 71,7 71,7 @@
  </footer>
</div><!-- /.footer-wrap -->

{% include _scripts.html %}	        
{% include _scripts.html %}

</body>
</html>
\ No newline at end of file
</html>

M _posts/2012-05-22-readability-post.md => _posts/2012-05-22-readability-post.md +5 -5
@@ 12,11 12,11 @@ Vero laborum commodo occupy. Semiotics voluptate mumblecore pug. Cosby sweater u

## Cupidatat 90's lo-fi authentic try-hard

In pug Portland incididunt mlkshk put a bird on it vinyl quinoa. Terry Richardson shabby chic +1, scenester Tonx excepteur tempor fugiat voluptate fingerstache aliquip nisi next level. Farm-to-table hashtag Truffaut, Odd Future ex meggings gentrify single-origin coffee try-hard 90's. 
In pug Portland incididunt mlkshk put a bird on it vinyl quinoa. Terry Richardson shabby chic +1, scenester Tonx excepteur tempor fugiat voluptate fingerstache aliquip nisi next level. Farm-to-table hashtag Truffaut, Odd Future ex meggings gentrify single-origin coffee try-hard 90's.

* Sartorial hoodie 
* Sartorial hoodie
* Labore viral forage
* Tote bag selvage 
* Tote bag selvage
* DIY exercitation et id ugh tumblr church-key

Incididunt umami sriracha, ethical fugiat VHS ex assumenda yr irure direct trade. Marfa Truffaut bicycle rights, kitsch placeat Etsy kogi asymmetrical. Beard locavore flexitarian, kitsch photo booth hoodie plaid ethical readymade leggings yr.


@@ 25,7 25,7 @@ Aesthetic odio dolore, meggings disrupt qui readymade stumptown brunch Terry Ric

## Forage occaecat cardigan qui

Fashion axe hella gastropub lo-fi kogi 90's aliquip +1 veniam delectus tousled. Cred sriracha locavore gastropub kale chips, iPhone mollit sartorial. Anim dolore 8-bit, pork belly dolor photo booth aute flannel small batch. Dolor disrupt ennui, tattooed whatever salvia Banksy sartorial roof party selfies raw denim sint meh pour-over. Ennui eu cardigan sint, gentrify iPhone cornhole. 
Fashion axe hella gastropub lo-fi kogi 90's aliquip +1 veniam delectus tousled. Cred sriracha locavore gastropub kale chips, iPhone mollit sartorial. Anim dolore 8-bit, pork belly dolor photo booth aute flannel small batch. Dolor disrupt ennui, tattooed whatever salvia Banksy sartorial roof party selfies raw denim sint meh pour-over. Ennui eu cardigan sint, gentrify iPhone cornhole.

> Whatever velit occaecat quis deserunt gastropub, leggings elit tousled roof party 3 wolf moon kogi pug blue bottle ea. Fashion axe shabby chic Austin quinoa pickled laborum bitters next level, disrupt deep v accusamus non fingerstache.



@@ 41,4 41,4 @@ Fingerstache thundercats Williamsburg, deep v scenester Banksy ennui vinyl selfi

Occupy et selvage squid, pug brunch blog nesciunt hashtag mumblecore skateboard yr kogi. Ugh small batch swag four loko. Fap post-ironic qui tote bag farm-to-table american apparel scenester keffiyeh vero, swag non pour-over gentrify authentic pitchfork. Schlitz scenester lo-fi voluptate, tote bag irony bicycle rights pariatur vero Vice freegan wayfarers exercitation nisi shoreditch. Chambray tofu vero sed. Street art swag literally leggings, Cosby sweater mixtape PBR lomo Banksy non in pitchfork ennui McSweeney's selfies. Odd Future Banksy non authentic.

Aliquip enim artisan dolor post-ironic. Pug tote bag Marfa, deserunt pour-over Portland wolf eu odio intelligentsia american apparel ugh ea. Sunt viral et, 3 wolf moon gastropub pug id. Id fashion axe est typewriter, mlkshk Portland art party aute brunch. Sint pork belly Cosby sweater, deep v mumblecore kitsch american apparel. Try-hard direct trade tumblr sint skateboard. Adipisicing bitters excepteur biodiesel, pickled gastropub aute veniam.
\ No newline at end of file
Aliquip enim artisan dolor post-ironic. Pug tote bag Marfa, deserunt pour-over Portland wolf eu odio intelligentsia american apparel ugh ea. Sunt viral et, 3 wolf moon gastropub pug id. Id fashion axe est typewriter, mlkshk Portland art party aute brunch. Sint pork belly Cosby sweater, deep v mumblecore kitsch american apparel. Try-hard direct trade tumblr sint skateboard. Adipisicing bitters excepteur biodiesel, pickled gastropub aute veniam.

M _posts/2013-05-22-sample-post-images.md => _posts/2013-05-22-sample-post-images.md +1 -1
@@ 59,4 59,4 @@ And you'll get something that looks like this:
	<img src="http://placehold.it/600x300.jpg">
	<img src="http://placehold.it/600x300.jpg">
	<figcaption>Three images.</figcaption>
</figure>
\ No newline at end of file
</figure>

M _posts/2013-05-23-readability-feature-post.md => _posts/2013-05-23-readability-feature-post.md +5 -5
@@ 16,11 16,11 @@ Vero laborum commodo occupy. Semiotics voluptate mumblecore pug. Cosby sweater u

## Cupidatat 90's lo-fi authentic try-hard

In pug Portland incididunt mlkshk put a bird on it vinyl quinoa. Terry Richardson shabby chic +1, scenester Tonx excepteur tempor fugiat voluptate fingerstache aliquip nisi next level. Farm-to-table hashtag Truffaut, Odd Future ex meggings gentrify single-origin coffee try-hard 90's. 
In pug Portland incididunt mlkshk put a bird on it vinyl quinoa. Terry Richardson shabby chic +1, scenester Tonx excepteur tempor fugiat voluptate fingerstache aliquip nisi next level. Farm-to-table hashtag Truffaut, Odd Future ex meggings gentrify single-origin coffee try-hard 90's.

* Sartorial hoodie 
* Sartorial hoodie
* Labore viral forage
* Tote bag selvage 
* Tote bag selvage
* DIY exercitation et id ugh tumblr church-key

Incididunt umami sriracha, ethical fugiat VHS ex assumenda yr irure direct trade. Marfa Truffaut bicycle rights, kitsch placeat Etsy kogi asymmetrical. Beard locavore flexitarian, kitsch photo booth hoodie plaid ethical readymade leggings yr.


@@ 29,7 29,7 @@ Aesthetic odio dolore, meggings disrupt qui readymade stumptown brunch Terry Ric

## Forage occaecat cardigan qui

Fashion axe hella gastropub lo-fi kogi 90's aliquip +1 veniam delectus tousled. Cred sriracha locavore gastropub kale chips, iPhone mollit sartorial. Anim dolore 8-bit, pork belly dolor photo booth aute flannel small batch. Dolor disrupt ennui, tattooed whatever salvia Banksy sartorial roof party selfies raw denim sint meh pour-over. Ennui eu cardigan sint, gentrify iPhone cornhole. 
Fashion axe hella gastropub lo-fi kogi 90's aliquip +1 veniam delectus tousled. Cred sriracha locavore gastropub kale chips, iPhone mollit sartorial. Anim dolore 8-bit, pork belly dolor photo booth aute flannel small batch. Dolor disrupt ennui, tattooed whatever salvia Banksy sartorial roof party selfies raw denim sint meh pour-over. Ennui eu cardigan sint, gentrify iPhone cornhole.

> Whatever velit occaecat quis deserunt gastropub, leggings elit tousled roof party 3 wolf moon kogi pug blue bottle ea. Fashion axe shabby chic Austin quinoa pickled laborum bitters next level, disrupt deep v accusamus non fingerstache.



@@ 47,4 47,4 @@ Occupy et selvage squid, pug brunch blog nesciunt hashtag mumblecore skateboard 

Aliquip enim artisan dolor post-ironic. Pug tote bag Marfa, deserunt pour-over Portland wolf eu odio intelligentsia american apparel ugh ea. Sunt viral et, 3 wolf moon gastropub pug id. Id fashion axe est typewriter, mlkshk Portland art party aute brunch. Sint pork belly Cosby sweater, deep v mumblecore kitsch american apparel. Try-hard direct trade tumblr sint skateboard. Adipisicing bitters excepteur biodiesel, pickled gastropub aute veniam.

[^1]: Texture image courtesty of [Lovetextures](http://www.lovetextures.com/)
\ No newline at end of file
[^1]: Texture image courtesty of [Lovetextures](http://www.lovetextures.com/)

M _posts/2013-08-12-sample-link-post.md => _posts/2013-08-12-sample-link-post.md +2 -2
@@ 3,7 3,7 @@ layout: post
title: "Sample Link Post"
excerpt: "Example and code for using link posts."
tags: [sample post, link post]
link: http://mademistakes.com  
link: http://mademistakes.com
share: true
---



@@ 11,4 11,4 @@ This theme supports **link posts**, made famous by John Gruber. To use, just add

> And this is how a quote looks.

Some [link](http://www.mademistakes.com) can also be shown.
\ No newline at end of file
Some [link](http://www.mademistakes.com) can also be shown.

M _posts/2013-08-16-code-highlighting-post.md => _posts/2013-08-16-code-highlighting-post.md +1 -1
@@ 118,4 118,4 @@ end

An example of a Gist embed below.

{% gist mmistakes/6589546 %}
\ No newline at end of file
{% gist mmistakes/6589546 %}

M _posts/2014-07-31-author-override.md => _posts/2014-07-31-author-override.md +1 -1
@@ 40,4 40,4 @@ To assign Billy Rick as an author for our post. You'd add the following YAML fro

{% highlight yaml %}
author: billy_rick
{% endhighlight %}
\ No newline at end of file
{% endhighlight %}

M _sass/elements.scss => _sass/elements.scss +15 -15
@@ 1,18 1,18 @@
/* 
/*
   Rules
   ========================================================================== */

hr { 
	display: block; 
	margin: 1em 0; 
hr {
	display: block;
	margin: 1em 0;
	padding: 0;
	height: 1px; 
	border: 0; 
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #fff; 
	border-bottom: 1px solid #fff;
}

/* 
/*
   Figures and images
   ========================================================================== */



@@ 23,13 23,13 @@ figure {
article img {
	max-width: 100%;
	height: auto;
	border-width: 0; 
	vertical-align: middle; 
	-ms-interpolation-mode: bicubic; 
	border-width: 0;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
}

svg:not(:root) {
		overflow: hidden; 
		overflow: hidden;
}

/* 2 images of equal dimensions in a row */


@@ 62,7 62,7 @@ svg:not(:root) {
	}
}

/* 
/*
   Buttons
   ========================================================================== */



@@ 151,7 151,7 @@ svg:not(:root) {
  }
}

/* 
/*
   Wells
   ========================================================================== */



@@ 163,4 163,4 @@ svg:not(:root) {
	border: 1px solid #e3e3e3;
	@include rounded(4px);
	@include box-shadow(inset 0 1px 1px rgba(0, 0, 0, 0.05));
}
\ No newline at end of file
}

M _sass/forms.scss => _sass/forms.scss +62 -62
@@ 2,34 2,34 @@
   Forms
   ========================================================================== */

btnform { 
btnform {
	margin: 0 0 5px 0;
	fieldset { 
		margin-bottom: 5px; 
		padding: 0; 
		border-width: 0; 
	fieldset {
		margin-bottom: 5px;
		padding: 0;
		border-width: 0;
	}
	legend { 
	legend {
		display: block;
		width: 100%;
		margin-bottom: 5px * 2;
		*margin-left: -7px; 
		*margin-left: -7px;
		padding: 0;
		color: $textcolor;
		border: 0;
		border-bottom: 1px solid lighten($black, 80);
		white-space: normal; 
		white-space: normal;
	}
	p {
		margin-bottom: 5px / 2; 
		margin-bottom: 5px / 2;
	}
	ul {
		list-style-type: none; 
		list-style-type: none;
		margin: 0 0 5px 0;
		padding: 0; 
		padding: 0;
	}
	br {
		display: none; 
		display: none;
	}
}
label,


@@ 37,26 37,26 @@ input,
button,
select,
textarea {
	vertical-align: baseline; 
	*vertical-align: middle; 
	vertical-align: baseline;
	*vertical-align: middle;
}
input,
button,
select,
textarea {
	font-family: $base-font; 
	@include box-sizing(border-box); 
	font-family: $base-font;
	@include box-sizing(border-box);
}
label {
	display: block;
	margin-bottom: 10px / 8;
	font-weight: bold;
	color: $textcolor;
	cursor: pointer; 
	cursor: pointer;
	input,
	textarea,
	select {
		display: block; 
		display: block;
	}
}
input,


@@ 68,16 68,16 @@ select {
	margin-bottom: 5px / 4;
	background-color: $white;
	border: 1px solid lighten($black, 80);
	color: $textcolor; 
	color: $textcolor;
	&:hover {
		border-color: lighten($accentcolor, 50); 
		border-color: lighten($accentcolor, 50);
	}
}
.input-mini { 
	width: 60px; 
.input-mini {
	width: 60px;
}
.input-small { 
	width: 90px; 
.input-small {
	width: 90px;
}
input[type="image"],
input[type="checkbox"],


@@ 90,18 90,18 @@ input[type="radio"] {
	line-height: normal;
	cursor: pointer;
	@include rounded(0);
	border: 0 \9; 
	border: 0 \9;
}
input[type="checkbox"], 
input[type="radio"] {  
input[type="checkbox"],
input[type="radio"] {
	@include box-sizing(border-box);
	padding: 0; 
	*width: 13px; 
	*height: 13px; 
	padding: 0;
	*width: 13px;
	*height: 13px;
}
input[type="image"] {
	border: 0; 
	@include box-shadow(none); 
	border: 0;
	@include box-shadow(none);
}
input[type="file"] {
	width: auto;


@@ 110,7 110,7 @@ input[type="file"] {
	border: initial;
	background-color: transparent;
	background-color: initial;
	@include box-shadow(none); 
	@include box-shadow(none);
}
input[type="button"],
input[type="reset"],


@@ 118,11 118,11 @@ input[type="submit"] {
	width : auto;
	height : auto;
	cursor : pointer;
	*overflow : visible; 
	*overflow : visible;
}
select,
input[type="file"] {
	*margin-top : 4px;  
	*margin-top : 4px;
}
select {
	width : auto;


@@ 130,40 130,40 @@ select {
}
select[multiple],
select[size] {
	height : auto; 
	height : auto;
}
textarea {
	@include resize(vertical);
	height : auto;
	overflow : auto; 
	vertical-align : top; 
	overflow : auto;
	vertical-align : top;
}
input[type="hidden"] {
	display : none; 
	display : none;
}
.radio,
.checkbox {
	padding-left : 18px; 
	font-weight : normal; 
	padding-left : 18px;
	font-weight : normal;
}
.radio input[type="radio"],
.checkbox input[type="checkbox"] {
	float : left;
	margin-left : -18px; 
	margin-left : -18px;
}
.radio.inline,
.checkbox.inline {
	display : inline-block;
	padding-top : 5px;
	margin-bottom : 0;
	vertical-align : middle; 
	vertical-align : middle;
}
.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
	margin-left : 10px; 
	margin-left : 10px;
}

/* 
/*
   Disabled state
   ========================================================================== */



@@ 174,10 174,10 @@ input[readonly],
select[readonly],
textarea[readonly] {
	@include opacity(.5);
	cursor : not-allowed; 
	cursor : not-allowed;
}

/* 
/*
   Focus & active state
   ========================================================================== */



@@ 185,35 185,35 @@ input:focus,
textarea:focus {
	border-color : $accentcolor;
	outline : 0;
	outline : thin dotted \9; 
	outline : thin dotted \9;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
select:focus {
	@include box-shadow(none); 
	@include box-shadow(none);
}

/* 
/*
   Help text
   ========================================================================== */

.help-block,
.help-inline {
	color : lighten($black, 50); 
	color : lighten($black, 50);
}
.help-block {
	display : block; 
	margin-bottom : 1em; 
	display : block;
	margin-bottom : 1em;
	line-height : 1em;
}
.help-inline {
	display : inline-block;
	vertical-align : middle;
	padding-left : 5px; 
	padding-left : 5px;
}

/* 
/*
   .form-inline
   ========================================================================== */



@@ 221,17 221,17 @@ select:focus {
.form-inline textarea,
.form-inline select {
	display : inline-block;
	margin-bottom : 0; 
	margin-bottom : 0;
}
.form-inline label {
	display : inline-block; 
	display : inline-block;
}
.form-inline .radio,
.form-inline .checkbox,
.form-inline .radio {
	padding-left : 0;
	margin-bottom : 0;
	vertical-align : middle; 
	vertical-align : middle;
}
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {


@@ 239,7 239,7 @@ select:focus {
	margin-left : 0;
	margin-right : 3px; }

/* 
/*
   .form-search
   ========================================================================== */



@@ 247,13 247,13 @@ select:focus {
.form-search textarea,
.form-search select {
	display : inline-block;
	margin-bottom : 0; 
	margin-bottom : 0;
}
.form-search .search-query {
	padding-left : 14px;
	padding-right : 14px;
	margin-bottom : 0; 
	@include rounded(14px); 
	margin-bottom : 0;
	@include rounded(14px);
}
.form-search label {
	display : inline-block;

M _sass/grid.scss => _sass/grid.scss +12 -12
@@ 2,7 2,7 @@
   Grid mixins
   ========================================================================== */

/* 
/*
   Define number of columns in the grid
   Common values would be 12, 16 or 24
   ========================================================================== */


@@ 16,7 16,7 @@ $margin: 0;
  width:$width;
}

/* 
/*
   Works out the width of elements based on total number of columns and width
   number of columns being displayed. Removes 20px for margins.
   ========================================================================== */


@@ 25,9 25,9 @@ $margin: 0;
  display:$display;
  float:$float;
  width:(100%/$grid * $cols) - ($margin * 2);
}  
}

/* 
/*
   Add x amount of column padding before an element
   Example: @include prefix(1,12);
   ========================================================================== */


@@ 36,16 36,16 @@ $margin: 0;
  margin-left:(100%/$grid * $cols);
}

/* 
/*
   Add x amount of column padding after an element
   Example: @include suffix(2,12);
   ========================================================================== */

@mixin suffix($grid:$def_grid,$cols:''){  
  margin-right:(100%/$grid * $cols);    
@mixin suffix($grid:$def_grid,$cols:''){
  margin-right:(100%/$grid * $cols);
}

/* 
/*
   Remove left margin
   Example: @include first;
   ========================================================================== */


@@ 54,7 54,7 @@ $margin: 0;
  margin-left:0;
}

/* 
/*
   Remove right margin
   Example: @include last;
   ========================================================================== */


@@ 63,7 63,7 @@ $margin: 0;
  margin-right:0;
}

/* 
/*
   Push an element x amount of column(s) to the right
   Example: @include push(2,12);
   ========================================================================== */


@@ 71,9 71,9 @@ $margin: 0;
@mixin push($grid:$def_grid,$move:'') {
  position:relative;
  left:(100%/$grid * $move);
} 
}

/* 
/*
   Pull an element x amount of column(s) to the left
   Example: @include pull(1,12);
   ========================================================================== */

M _sass/mixins.scss => _sass/mixins.scss +55 -55
@@ 2,7 2,7 @@
   Utility mixins
   ========================================================================== */

/* 
/*
   Clearfix
   For clearing floats like a boss h5bp.com/q
   ========================================================================== */


@@ 22,7 22,7 @@
  }
}

/* 
/*
   Webkit-style focus
   ========================================================================== */



@@ 34,7 34,7 @@
  outline-offset: -2px;
}

/* 
/*
   Center-align a block level element
   ========================================================================== */



@@ 48,7 48,7 @@
   Typography related mixins
   ========================================================================== */

/* 
/*
   Maintains vertical rhythm by setting a font-sizes proportional to
   line-height and bottom margin
   example: @font-size(16);


@@ 62,7 62,7 @@
  margin-bottom: 0rem + ($doc-line-height / $doc-font-size);
}

/* 
/*
   Just font-size (REMs + pixel fallback)
   example: @include font-rem(16);
   ========================================================================== */


@@ 72,7 72,7 @@
  font-size: 0rem + $size / $doc-font-size;
}

/* 
/*
   Just font-size (REMs + pixel fallback) and line-height
   @include font(16);
   ========================================================================== */


@@ 83,14 83,14 @@
  line-height: 0 + round($doc-line-height / $size*10000) / 10000;
}

/* 
/*
   Hide text overflow and end with ...
   ========================================================================== */

@mixin text-overflow() {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; 
  white-space: nowrap;
}

/* Indentation variable */


@@ 120,7 120,7 @@ $indent-var: 0rem + ($doc-line-height / $doc-font-size);
  background-image  : -ms-linear-gradient(top, $startColor, $endColor);              // IE10
  background-image  : -o-linear-gradient(top, $startColor, $endColor);             // Opera 11.10
  background-image  : linear-gradient(top, $startColor, $endColor);                // W3C
  background-repeat : repeat-x; 
  background-repeat : repeat-x;
}

@mixin directional($startColor : $white, $endColor : $lightergrey, $deg : 45deg) {


@@ 130,7 130,7 @@ $indent-var: 0rem + ($doc-line-height / $doc-font-size);
  background-image  : -webkit-linear-gradient($deg, $startColor, $endColor);          // Safari 5.1+, Chrome 10+
  background-image  : -o-linear-gradient($deg, $startColor, $endColor);             // Opera 11.10
  background-image  : linear-gradient($deg, $startColor, $endColor);              // W3C
  background-repeat : repeat-x; 
  background-repeat : repeat-x;
}

// .bordered(COLOR, COLOR, COLOR, COLOR);


@@ 138,7 138,7 @@ $indent-var: 0rem + ($doc-line-height / $doc-font-size);
  border-top : solid 1px $top-color;
  border-left : solid 1px $left-color;
  border-right : solid 1px $right-color;
  border-bottom : solid 1px $bottom-color; 
  border-bottom : solid 1px $bottom-color;
}

/* ==========================================================================


@@ 147,16 147,16 @@ $indent-var: 0rem + ($doc-line-height / $doc-font-size);



/* 
/*
   Round all corners
   example: @include rounded(4px);
   ========================================================================== */

@mixin rounded($radius:4px) {
  border-radius : $radius; 
  border-radius : $radius;
}

/* 
/*
   Round individual corners (top right, bottom right, bottom left, top left)
   example: @include border-radius(4px, 0, 0, 4px);
   ========================================================================== */


@@ 167,11 167,11 @@ $indent-var: 0rem + ($doc-line-height / $doc-font-size);
  border-bottom-left-radius: $bottomleft;
  border-top-left-radius: $topleft;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;  
  background-clip: padding-box; 
  -moz-background-clip: padding;
  background-clip: padding-box;
}

/* 
/*
   Box shadow
   example: @include box-shadow(HORIZONTAL VERTICAL BLUR COLOR));
   ========================================================================== */


@@ 179,10 179,10 @@ $indent-var: 0rem + ($doc-line-height / $doc-font-size);
@mixin box-shadow($shadow: 0 1px 3px rgba(0,0,0,.25)) {
  -webkit-box-shadow: $shadow;
  -moz-box-shadow: $shadow;
  box-shadow: $shadow; 
  box-shadow: $shadow;
}

/* 
/*
   Drop shadow
   example: @include drop-shadow(HORIZONTAL, VERTICAL, BLUR, ALPHA);
   ========================================================================== */


@@ 190,10 190,10 @@ $indent-var: 0rem + ($doc-line-height / $doc-font-size);
@mixin drop-shadow($x-axis: 0, $y-axis: 1px, $blur: 2px, $alpha: 0.1) {
  -webkit-box-shadow: $x-axis $y-axis $blur rgba(0, 0, 0, $alpha);
  -moz-box-shadow: $x-axis $y-axis $blur rgba(0, 0, 0, $alpha);
  box-shadow: $x-axis $y-axis $blur rgba(0, 0, 0, $alpha); 
  box-shadow: $x-axis $y-axis $blur rgba(0, 0, 0, $alpha);
}

/* 
/*
   Text shadow
   example: @include text-shadow(0 2px 3px rgba(0,0,0,.25));
   ========================================================================== */


@@ 201,20 201,20 @@ $indent-var: 0rem + ($doc-line-height / $doc-font-size);
@mixin text-shadow($shadow: 0 2px 3px rgba(0,0,0,.25)) {
text-shadow: $shadow; }

/* 
/*
   Opacity
   example: @include opacity(0.5); // 50% opacity
   ========================================================================== */

@mixin opacity($opacity: 0.5) {
  opacity: $opacity; 
  opacity: $opacity;
}

/* ==========================================================================
   Transformations
   ========================================================================== */

/* 
/*
   @include rotate(VALUEdeg);
   ========================================================================== */



@@ 223,10 223,10 @@ text-shadow: $shadow; }
  -moz-transform: rotate($deg);
  -ms-transform: rotate($deg);
  -o-transform: rotate($deg);
  transform: rotate($deg); 
  transform: rotate($deg);
}

/* 
/*
   @include scale(VALUE);
   ========================================================================== */



@@ 235,10 235,10 @@ text-shadow: $shadow; }
  -moz-transform: scale($ratio);
  -ms-transform: scale($ratio);
  -o-transform: scale($ratio);
  transform: scale($ratio); 
  transform: scale($ratio);
}

/* 
/*
   @include skew(VALUE, VALUE);
   ========================================================================== */



@@ 247,10 247,10 @@ text-shadow: $shadow; }
  -moz-transform: skew($x, $y);
  -ms-transform: skew($x, $y);
  -o-transform: skew($x, $y);
  transform: skew($x, $y); 
  transform: skew($x, $y);
}

/* 
/*
   @include transition(PROPERTY DURATION DELAY(OPTIONAL) TIMING-FINCTION);
   ========================================================================== */



@@ 259,10 259,10 @@ text-shadow: $shadow; }
  -moz-transition: $transition;
  -ms-transition: $transition;
  -o-transition: $transition;
  transition: $transition; 
  transition: $transition;
}

/* 
/*
   @include translate(VALUE, VALUE);
   ========================================================================== */



@@ 271,7 271,7 @@ text-shadow: $shadow; }
  -moz-transform: translate($x, $y);
  -ms-transform: translate($x, $y);
  -o-transform: translate($x, $y);
  transform: translate($x, $y); 
  transform: translate($x, $y);
}

@mixin translate3d($x: 0, $y: 0, $z: 0) {


@@ 279,7 279,7 @@ text-shadow: $shadow; }
  -moz-transform: translate($x, $y, $z);
  -ms-transform: translate($x, $y, $z);
  -o-transform: translate($x, $y, $z);
  transform: translate($x, $y, $z); 
  transform: translate($x, $y, $z);
}

@mixin animation($name, $duration: 300ms, $delay: 0, $ease: ease) {


@@ 292,15 292,15 @@ text-shadow: $shadow; }
   Background
   ========================================================================== */

/* 
/*
   @include background-alpha(VALUE VALUE);
   ========================================================================== */

@mixin background-alpha($color: $white, $alpha: 1) {
  background-color: hsla(hue($color), saturation($color), lightness($color), $alpha); 
  background-color: hsla(hue($color), saturation($color), lightness($color), $alpha);
}

/* 
/*
   @include background-size(VALUE VALUE);
   ========================================================================== */



@@ 308,10 308,10 @@ text-shadow: $shadow; }
  -webkit-background-size: $size;
  -moz-background-size: $size;
  -o-background-size: $size;
  background-size: $size; 
  background-size: $size;
}

/* 
/*
   Box-sizing
   example: @include box-sizing(VALUE); //(border-box, padding-box, content-box)
   ========================================================================== */


@@ 320,7 320,7 @@ text-shadow: $shadow; }
  -webkit-box-sizing: $boxsize;
  -moz-box-sizing: $boxsize;
  -ms-box-sizing: $boxsize;
  box-sizing: $boxsize; 
  box-sizing: $boxsize;
}

/* ==========================================================================


@@ 330,10 330,10 @@ text-shadow: $shadow; }
@mixin hide-text() {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; 
  overflow: hidden;
}

/* 
/*
   Hide from visual and speaking browsers
   ========================================================================== */



@@ 342,15 342,15 @@ text-shadow: $shadow; }
  visibility: hidden;
}

/* 
/*
   Hide but maintain layout
   ========================================================================== */

@mixin invisible() { 
  visibility: hidden; 
@mixin invisible() {
  visibility: hidden;
}

/* 
/*
   Resize
   example: @include resize(VALUE); //(none, both, horizontal, vertical, inherit)



@@ 358,19 358,19 @@ text-shadow: $shadow; }

@mixin resize($direction: both) {
  resize: $direction;
  overflow: auto; 
  overflow: auto;
}

/* 
/*
   Hidden but available to speaking browsers
   ========================================================================== */

@mixin visuallyhidden() { 
overflow: hidden; 
@mixin visuallyhidden() {
overflow: hidden;
position: absolute;
clip: rect(0 0 0 0); 
height: 1px; 
clip: rect(0 0 0 0);
height: 1px;
width: 1px;
margin: -1px; 
padding: 0; 
border: 0; }
\ No newline at end of file
margin: -1px;
padding: 0;
border: 0; }

M _sass/page.scss => _sass/page.scss +11 -11
@@ 8,7 8,7 @@ body {
	color: $text-color;
}

/* 
/*
   Header
   ========================================================================== */



@@ 79,7 79,7 @@ body {
			white-space: nowrap;
			border-bottom: 0 solid transparent;
		}
		a { 
		a {
			display: block;
			padding: 10px 0;
			decoration: none;


@@ 165,11 165,11 @@ $button-size: 1.5rem;
	}
}
// Style the toggle menu link and hide it
.nav .navtoogle {	
.nav .navtoogle {
	@include font-rem(18);
	font-weight: normal;
	background-color: $black;
	color: $white;	
	color: $white;
	border: none;
	cursor: pointer;
	@media #{$small} {


@@ 206,7 206,7 @@ $button-size: 1.5rem;
	}
}
// Displaying the menu when the user has clicked on the button
.js .nav .active + ul {		
.js .nav .active + ul {
	max-height: 30em;
	overflow: hidden;
	-webkit-transition: max-height .4s;


@@ 548,7 548,7 @@ $button-size: 1.5rem;
	margin: 1em 0;
	li {
		display: inline;
		a { 
		a {
			border-bottom: 0 solid transparent;
			&:hover {
				border-bottom: 0 solid transparent;


@@ 574,7 574,7 @@ $button-size: 1.5rem;
  li {
  	display: inline-block;
  }
  $social: 
  $social:
  (facebook, $facebook-color),
  (flickr, $flickr-color),
  (foursquare, $foursquare-color),


@@ 590,7 590,7 @@ $button-size: 1.5rem;
  @each $socialnetwork, $color in $social {
    .#{$socialnetwork} {
      background: $color;
    }    
    }
  }
  a {
	  display: block;


@@ 634,7 634,7 @@ $button-size: 1.5rem;
	h4,
	h5,
	h6,
	span { 
	span {
		@include font-rem(14);
	}
	footer {


@@ 679,7 679,7 @@ $button-size: 1.5rem;
	}
}

/* 
/*
   Browser upgrade alert
   ========================================================================== */



@@ 699,7 699,7 @@ $button-size: 1.5rem;
		}
	}
}
/* 
/*
   Google search form
   ========================================================================== */


M _sass/site.scss => _sass/site.scss +13 -13
@@ 2,22 2,22 @@
   Site wide styles
   ========================================================================== */

/* 
/*
   Selection
   ========================================================================== */

::-moz-selection { 
	background-color: lighten($basecolor, 65%); 
	color: $basecolor; 
	text-shadow: none; 
}  	
::selection { 
	background-color: lighten($basecolor, 65%); 
	color: $basecolor; 
	text-shadow: none; 
::-moz-selection {
	background-color: lighten($basecolor, 65%);
	color: $basecolor;
	text-shadow: none;
}
::selection {
	background-color: lighten($basecolor, 65%);
	color: $basecolor;
	text-shadow: none;
}

/* 
/*
   Global classes
   ========================================================================== */



@@ 63,10 63,10 @@
	}
}

/* 
/*
   Global transition
   ========================================================================== */

b, i, strong, em, blockquote, p, q, span, figure, img, h1, h2, header, input, a {
	@include transition(all .2s ease);
}
\ No newline at end of file
}

M _sass/typography.scss => _sass/typography.scss +21 -21
@@ 2,7 2,7 @@
   Typography
   ========================================================================== */

/* 
/*
   Headings
   ========================================================================== */



@@ 28,30 28,30 @@ h6 {
	@include font-size(14);
}

/* 
/*
   Links
   ========================================================================== */

a { 
a {
	text-decoration: none;
	color: $link-color; 
	&:visited { 
		color: $linkcolorvisited; 
	color: $link-color;
	&:visited {
		color: $linkcolorvisited;
	}
	&:hover { 
		color: $linkcolorhover; 
	&:hover {
		color: $linkcolorhover;
	}
	&:focus { 
		outline: thin dotted; 
	&:focus {
		outline: thin dotted;
		color: $linkcolorfocus;
	}
	&:hover, 
	&:active { 
		outline: 0; 
	&:hover,
	&:active {
		outline: 0;
	}
}

/* 
/*
   Figure captions
   ========================================================================== */



@@ 62,7 62,7 @@ figcaption {
	color: lighten($text-color, 10);
}

/* 
/*
   Feature image captions
   ========================================================================== */



@@ 89,7 89,7 @@ figcaption {
	}
}

/* 
/*
   Notices
   ========================================================================== */



@@ 103,7 103,7 @@ figcaption {
	@include rounded(3px);
}

/* 
/*
   Blockquotes
   ========================================================================== */



@@ 115,7 115,7 @@ blockquote {
	font-style: italic;
}

/* 
/*
   Footnotes
   ========================================================================== */



@@ 126,7 126,7 @@ blockquote {
	}
}

/* 
/*
   Paragraphs
   ========================================================================== */



@@ 141,7 141,7 @@ p {
	}
}

/* 
/*
   Code snippets
   ========================================================================== */



@@ 149,7 149,7 @@ tt, code, kbd, samp, pre {
	font-family: $code-font;
}
p,
li { 
li {
	code {
		@include font-rem(12);
		line-height: 1.5;

M _sass/variables.scss => _sass/variables.scss +7 -7
@@ 2,7 2,7 @@
   Sass variables
   ========================================================================== */

/* 
/*
   Typography
   ========================================================================== */



@@ 14,7 14,7 @@ $heading-font: 'PT Sans Narrow', sans-serif;
$code-font: Monaco, "Courier New", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace;
$alt-font: $base-font;

/* 
/*
   Colors
   ========================================================================== */



@@ 23,8 23,8 @@ $body-color     : $bodycolor;
$textcolor      : #333332;
$text-color     : $textcolor;
$border-color   : $text-color;
$basecolor 		  : #343434;	  
$compcolor 		  : spin($basecolor, 180); 
$basecolor 		  : #343434;
$compcolor 		  : spin($basecolor, 180);
$bordercolor    : $basecolor;
$white          : #fff;
$black          : #111;


@@ 58,12 58,12 @@ $linkcolorhover 	: darken($linkcolor, 10);
$linkcolorvisited : lighten($linkcolorhover, 20);
$linkcolorfocus 	: darken($linkcolorvisited, 10);

/* 
/*
   Breakpoints
   ========================================================================== */
   

$micro            : "only screen and (min-width: 30em)";
$small            : "only screen and (min-width: 37.5em)";
$medium           : "only screen and (min-width: 48em)";
$large            : "only screen and (min-width: 62em)";
$x-large          : "only screen and (min-width: 86.375em)";
\ No newline at end of file
$x-large          : "only screen and (min-width: 86.375em)";

M _sass/vendor/magnific-popup/_settings.scss => _sass/vendor/magnific-popup/_settings.scss +1 -1
@@ 43,4 43,4 @@ $mfp-caption-subtitle-color:          #BDBDBD;                    // Caption sub
.mfp-counter { font-family: $alt-font; }                          // Caption font family

// A11y
$mfp-use-visuallyhidden:              false; 
\ No newline at end of file
$mfp-use-visuallyhidden:              false;

M _sass/vendor/magnific-popup/magnific-popup.scss => _sass/vendor/magnific-popup/magnific-popup.scss +3 -3
@@ 66,7 66,7 @@ $mfp-caption-title-color:             #F3F3F3 !default;
$mfp-caption-subtitle-color:          #BDBDBD !default;

// A11y
$mfp-use-visuallyhidden:              false !default; // Hide content from browsers, but make it available for screen readers 
$mfp-use-visuallyhidden:              false !default; // Hide content from browsers, but make it available for screen readers





@@ 129,7 129,7 @@ $mfp-use-visuallyhidden:              false !default; // Hide content from brows

// Remove vertical centering when popup has class `mfp-align-top`
.mfp-align-top {
  .mfp-container { 
  .mfp-container {
    &:before {
      display: none;
    }


@@ 401,7 401,7 @@ button {
    &:before,
    .mfp-b {
      margin-left: 25px;
      border-right: 27px solid $mfp-controls-border-color; 
      border-right: 27px solid $mfp-controls-border-color;
    }
  }


M _templates/page => _templates/page +1 -1
@@ 6,5 6,5 @@ modified:
excerpt:
tags: []
image:
  feature: 
  feature:
---

M about/index.md => about/index.md +2 -2
@@ 15,11 15,11 @@ Minimal Mistakes is responsive Jekyll theme with large featured images and solid
## Minimal Mistakes is all about:

* Responsive templates. Looking good on mobile, tablet, and desktop.
* Gracefully degrading in older browsers. Compatible with Internet Explorer 8+ and all modern browsers. 
* Gracefully degrading in older browsers. Compatible with Internet Explorer 8+ and all modern browsers.
* Minimal embellishments -- content first.
* Optional large feature images for posts and pages.
* Simple and clear permalink structure.
* [Custom 404 page](http://mmistakes.github.io/minimal-mistakes/404.html) to get you started.
* Support for Disqus Comments

<a markdown="0" href="{{ site.url }}/theme-setup" class="btn">Install Minimal Mistakes Theme</a>
\ No newline at end of file
<a markdown="0" href="{{ site.url }}/theme-setup" class="btn">Install Minimal Mistakes Theme</a>

M assets/fonts/fontawesome-webfont.svg => assets/fonts/fontawesome-webfont.svg +1 -1
@@ 501,4 501,4 @@
<glyph horiz-adv-x="1792" />
<glyph horiz-adv-x="1792" />
</font>
</defs></svg> 
\ No newline at end of file
</defs></svg>

M assets/js/_main.js => assets/js/_main.js +3 -3
@@ 10,7 10,7 @@ var changeClass = function (r,className1,className2) {
    r.className = r.className.replace(new RegExp("(?:^|\\s+)" + className2 + "(?:\\s+|$)"),' '+className1+' ');
    }
    return r.className;
};  
};
//  Creating our button in JS for smaller screens
var menuElements = document.getElementById('site-nav');
menuElements.insertAdjacentHTML('afterBegin','<button type="button" role="button" id="menutoggle" class="navtoogle navicon-lines-button x" aria-hidden="true"><span class="navicon-lines"></span>menu</button>');


@@ 60,8 60,8 @@ $(document).ready(function() {
      tError: '<a href="%url%">Image #%curr%</a> could not be loaded.',
    },
    removalDelay: 300, // Delay in milliseconds before popup is removed
    // Class that is added to body when popup is open. 
    // Class that is added to body when popup is open.
    // make it unique to apply your CSS animations just to this exact popup
    mainClass: 'mfp-fade'
  });
});
\ No newline at end of file
});

M assets/js/plugins/jquery.magnific-popup.js => assets/js/plugins/jquery.magnific-popup.js +93 -93
@@ 5,9 5,9 @@

/*>>core*/
/**
 * 
 *
 * Magnific Popup Core JS file
 * 
 *
 */




@@ 29,7 29,7 @@ var CLOSE_EVENT = 'Close',


/**
 * Private vars 
 * Private vars
 */
var mfp, // As we have only one instance of MagnificPopup object, we define it locally to not to use 'this'
	MagnificPopup = function(){},


@@ 97,15 97,15 @@ var _mfpOn = function(name, f) {
			v = ['ms','O','Moz','Webkit']; // 'v' for vendor

		if( s['transition'] !== undefined ) {
			return true; 
			return true;
		}
			

		while( v.length ) {
			if( v.pop() + 'Transition' in s ) {
				return true;
			}
		}
				

		return false;
	};



@@ 119,12 119,12 @@ MagnificPopup.prototype = {
	constructor: MagnificPopup,

	/**
	 * Initializes Magnific Popup plugin. 
	 * Initializes Magnific Popup plugin.
	 * This function is triggered only once when $.fn.magnificPopup or $.magnificPopup is executed
	 */
	init: function() {
		var appVersion = navigator.appVersion;
		mfp.isIE7 = appVersion.indexOf("MSIE 7.") !== -1; 
		mfp.isIE7 = appVersion.indexOf("MSIE 7.") !== -1;
		mfp.isIE8 = appVersion.indexOf("MSIE 8.") !== -1;
		mfp.isLowIE = mfp.isIE7 || mfp.isIE8;
		mfp.isAndroid = (/android/gi).test(appVersion);


@@ 151,7 151,7 @@ MagnificPopup.prototype = {

		var i;

		if(data.isObj === false) { 
		if(data.isObj === false) {
			// convert jQuery collection to array to avoid conflicts later
			mfp.items = data.items.toArray();



@@ 178,8 178,8 @@ MagnificPopup.prototype = {
			mfp.updateItemHTML();
			return;
		}
		
		mfp.types = []; 

		mfp.types = [];
		_wrapClasses = '';
		if(data.mainEl && data.mainEl.length) {
			mfp.ev = data.mainEl.eq(0);


@@ 198,7 198,7 @@ MagnificPopup.prototype = {



		mfp.st = $.extend(true, {}, $.magnificPopup.defaults, data ); 
		mfp.st = $.extend(true, {}, $.magnificPopup.defaults, data );
		mfp.fixedContentPos = mfp.st.fixedContentPos === 'auto' ? !mfp.probablyMobile : mfp.st.fixedContentPos;

		if(mfp.st.modal) {


@@ 207,7 207,7 @@ MagnificPopup.prototype = {
			mfp.st.showCloseBtn = false;
			mfp.st.enableEscapeKey = false;
		}
		


		// Building markup
		// main containers are created only once


@@ 259,7 259,7 @@ MagnificPopup.prototype = {
			_wrapClasses += ' mfp-align-top';
		}

	


		if(mfp.fixedContentPos) {
			mfp.wrap.css({


@@ 268,7 268,7 @@ MagnificPopup.prototype = {
				overflowY: mfp.st.overflowY
			});
		} else {
			mfp.wrap.css({ 
			mfp.wrap.css({
				top: _window.scrollTop(),
				position: 'absolute'
			});


@@ 280,7 280,7 @@ MagnificPopup.prototype = {
			});
		}

		


		if(mfp.st.enableEscapeKey) {
			// Close on ESC key


@@ 299,7 299,7 @@ MagnificPopup.prototype = {
		if(!mfp.st.closeOnContentClick) {
			_wrapClasses += ' mfp-auto-cursor';
		}
		

		if(_wrapClasses)
			mfp.wrap.addClass(_wrapClasses);



@@ 307,7 307,7 @@ MagnificPopup.prototype = {
		// this triggers recalculation of layout, so we get it once to not to trigger twice
		var windowHeight = mfp.wH = _window.height();

		

		var windowStyles = {};

		if( mfp.fixedContentPos ) {


@@ 328,8 328,8 @@ MagnificPopup.prototype = {
			}
		}

		
		


		var classesToadd = mfp.st.mainClass;
		if(mfp.isIE7) {
			classesToadd += ' mfp-ie7';


@@ 345,16 345,16 @@ MagnificPopup.prototype = {

		// remove scrollbar, add margin e.t.c
		$('html').css(windowStyles);
		

		// add everything to DOM
		mfp.bgOverlay.add(mfp.wrap).prependTo( mfp.st.prependTo || _body );

		// Save last focused element
		mfp._lastFocusedEl = document.activeElement;
		

		// Wait for next cycle to allow CSS transition
		setTimeout(function() {
			

			if(mfp.content) {
				mfp._addClassToMFP(READY_CLASS);
				mfp._setFocus();


@@ 362,7 362,7 @@ MagnificPopup.prototype = {
				// if content is not defined (not loaded e.t.c) we add class only for BG
				mfp.bgOverlay.addClass(READY_CLASS);
			}
			

			// Trap the focus in popup
			_document.on('focusin' + EVENT_NS, mfp._onFocusIn);



@@ 421,7 421,7 @@ MagnificPopup.prototype = {
			}
			$('html').css(windowStyles);
		}
		

		_document.off('keyup' + EVENT_NS + ' focusin' + EVENT_NS);
		mfp.ev.off(EVENT_NS);



@@ 441,14 441,14 @@ MagnificPopup.prototype = {
		if(mfp._lastFocusedEl) {
			$(mfp._lastFocusedEl).focus(); // put tab focus back
		}
		mfp.currItem = null;	
		mfp.currItem = null;
		mfp.content = null;
		mfp.currTemplate = null;
		mfp.prevHeight = 0;

		_mfpTrigger(AFTER_CLOSE_EVENT);
	},
	

	updateSize: function(winHeight) {

		if(mfp.isIOS) {


@@ 485,17 485,17 @@ MagnificPopup.prototype = {
			item = mfp.parseEl( mfp.index );
		}

		var type = item.type;	
		var type = item.type;

		_mfpTrigger('BeforeChange', [mfp.currItem ? mfp.currItem.type : '', type]);
		// BeforeChange event works like so:
		// _mfpOn('BeforeChange', function(e, prevType, newType) { });
		

		mfp.currItem = item;

		

		



		if(!mfp.currTemplate[type]) {
			var markup = mfp.st[type] ? mfp.st[type].markup : false;


@@ 514,7 514,7 @@ MagnificPopup.prototype = {
		if(_prevContentType && _prevContentType !== item.type) {
			mfp.container.removeClass('mfp-'+_prevContentType+'-holder');
		}
		

		var newContent = mfp['get' + type.charAt(0).toUpperCase() + type.slice(1)](item, mfp.currTemplate[type]);
		mfp.appendContent(newContent, type);



@@ 522,7 522,7 @@ MagnificPopup.prototype = {

		_mfpTrigger(CHANGE_EVENT, item);
		_prevContentType = item.type;
		

		// Append container back after its content changed
		mfp.container.prepend(mfp.contentContainer);



@@ 535,7 535,7 @@ MagnificPopup.prototype = {
	 */
	appendContent: function(newContent, type) {
		mfp.content = newContent;
		

		if(newContent) {
			if(mfp.st.showCloseBtn && mfp.st.closeBtnInside &&
				mfp.currTemplate[type] === true) {


@@ 558,7 558,7 @@ MagnificPopup.prototype = {



	

	/**
	 * Creates Magnific Popup data object based on given data
	 * @param  {int} index Index of item to parse


@@ 612,11 612,11 @@ MagnificPopup.prototype = {

		if(!options) {
			options = {};
		} 
		}

		var eName = 'click.magnificPopup';
		options.mainEl = el;
		

		if(options.items) {
			options.isObj = true;
			el.off(eName).on(eName, eHandler);


@@ 651,7 651,7 @@ MagnificPopup.prototype = {
				}
			}
		}
		

		if(e.type) {
			e.preventDefault();



@@ 660,7 660,7 @@ MagnificPopup.prototype = {
				e.stopPropagation();
			}
		}
			


		options.el = $(e.mfpEl);
		if(options.delegate) {


@@ 829,14 829,14 @@ $.magnificPopup = {
	modules: [],

	open: function(options, index) {
		_checkInstance();	
		_checkInstance();

		if(!options) {
			options = {};
		} else {
			options = $.extend(true, {}, options);
		}
			


		options.isObj = true;
		options.index = index || 0;


@@ 851,16 851,16 @@ $.magnificPopup = {
		if(module.options) {
			$.magnificPopup.defaults[name] = module.options;
		}
		$.extend(this.proto, module.proto);			
		$.extend(this.proto, module.proto);
		this.modules.push(name);
	},

	defaults: {   
	defaults: {

		// Info about options is in docs:
		// http://dimsemenov.com/plugins/magnific-popup/documentation.html#options
		
		disableOn: 0,	

		disableOn: 0,

		key: null,



@@ 871,12 871,12 @@ $.magnificPopup = {
		preloader: true,

		focus: '', // CSS selector of input to focus after popup is opened
		

		closeOnContentClick: false,

		closeOnBgClick: true,

		closeBtnInside: true, 
		closeBtnInside: true,

		showCloseBtn: true,



@@ 885,13 885,13 @@ $.magnificPopup = {
		modal: false,

		alignTop: false,
	

		removalDelay: 0,

		prependTo: null,
		
		fixedContentPos: 'auto', 
	

		fixedContentPos: 'auto',

		fixedBgPos: 'auto',

		overflowY: 'auto',


@@ 938,9 938,9 @@ $.fn.magnificPopup = function(options) {
	} else {
		// clone options obj
		options = $.extend(true, {}, options);
		

		/*
		 * As Zepto doesn't support .data() method for objects 
		 * As Zepto doesn't support .data() method for objects
		 * and it works only in normal browsers
		 * we assign "options" object directly to the DOM element. FTW!
		 */


@@ 982,7 982,7 @@ console.log('Test #2:', performance.now() - start);

var INLINE_NS = 'inline',
	_hiddenClass,
	_inlinePlaceholder, 
	_inlinePlaceholder,
	_lastInlineElement,
	_putInlineElementsBack = function() {
		if(_lastInlineElement) {


@@ 1130,14 1130,14 @@ $.magnificPopup.registerModule(AJAX_NS, {



	


/*>>ajax*/

/*>>image*/
var _imgInterval,
	_getTitle = function(item) {
		if(item.data && item.data.title !== undefined) 
		if(item.data && item.data.title !== undefined)
			return item.data.title;

		var src = mfp.st.image.titleSrc;


@@ 1168,7 1168,7 @@ $.magnificPopup.registerModule('image', {
					'</figure>'+
				'</div>',
		cursor: 'mfp-zoom-out-cur',
		titleSrc: 'title', 
		titleSrc: 'title',
		verticalFit: true,
		tError: '<a href="%url%">The image</a> could not be loaded.'
	},


@@ 1213,13 1213,13 @@ $.magnificPopup.registerModule('image', {
		},
		_onImageHasSize: function(item) {
			if(item.img) {
				

				item.hasSize = true;

				if(_imgInterval) {
					clearInterval(_imgInterval);
				}
				

				item.isCheckingImgSize = false;

				_mfpTrigger('ImageHasSize', item);


@@ 1227,7 1227,7 @@ $.magnificPopup.registerModule('image', {
				if(item.imgHidden) {
					if(mfp.content)
						mfp.content.removeClass('mfp-loading');
					

					item.imgHidden = false;
				}



@@ 1280,7 1280,7 @@ $.magnificPopup.registerModule('image', {
					if(item) {
						if (item.img[0].complete) {
							item.img.off('.mfploader');
							

							if(item === mfp.currItem){
								mfp._onImageHasSize(item);



@@ 1291,7 1291,7 @@ $.magnificPopup.registerModule('image', {
							item.loaded = true;

							_mfpTrigger('ImageLoadComplete');
							

						}
						else {
							// if image complete check fails 200 times (20 sec), we assume that there was an error.


@@ 1338,7 1338,7 @@ $.magnificPopup.registerModule('image', {
				img = item.img[0];
				if(img.naturalWidth > 0) {
					item.hasSize = true;
				} else if(!img.width) {										
				} else if(!img.width) {
					item.hasSize = false;
				}
			}


@@ 1370,7 1370,7 @@ $.magnificPopup.registerModule('image', {
				item.imgHidden = true;
				template.addClass('mfp-loading');
				mfp.findImageSize(item);
			} 
			}

			return template;
		}


@@ 1387,7 1387,7 @@ var hasMozTransform,
		if(hasMozTransform === undefined) {
			hasMozTransform = document.createElement('p').style.MozTransform !== undefined;
		}
		return hasMozTransform;		
		return hasMozTransform;
	};

$.magnificPopup.registerModule('zoom', {


@@ 1407,7 1407,7 @@ $.magnificPopup.registerModule('zoom', {
			var zoomSt = mfp.st.zoom,
				ns = '.zoom',
				image;
				

			if(!zoomSt.enabled || !mfp.supportsTransition) {
				return;
			}


@@ 1443,7 1443,7 @@ $.magnificPopup.registerModule('zoom', {
					mfp.content.css('visibility', 'hidden');

					// Basically, all code below does is clones existing image, puts in on top of the current one and animated it
					

					image = mfp._getItemToZoom();

					if(!image) {


@@ 1451,8 1451,8 @@ $.magnificPopup.registerModule('zoom', {
						return;
					}

					animatedImg = getElToAnimate(image); 
					
					animatedImg = getElToAnimate(image);

					animatedImg.css( mfp._getOffset() );

					mfp.wrap.append(animatedImg);


@@ 1467,7 1467,7 @@ $.magnificPopup.registerModule('zoom', {
								animatedImg.remove();
								image = animatedImg = null;
								_mfpTrigger('ZoomAnimationEnded');
							}, 16); // avoid blink when switching images 
							}, 16); // avoid blink when switching images

						}, duration); // this timeout equals animation duration



@@ 1491,12 1491,12 @@ $.magnificPopup.registerModule('zoom', {
						}
						animatedImg = getElToAnimate(image);
					}
					
					


					animatedImg.css( mfp._getOffset(true) );
					mfp.wrap.append(animatedImg);
					mfp.content.css('visibility', 'hidden');
					

					setTimeout(function() {
						animatedImg.css( mfp._getOffset() );
					}, 16);


@@ 1511,7 1511,7 @@ $.magnificPopup.registerModule('zoom', {
						animatedImg.remove();
					}
					image = null;
				}	
				}
			});
		},



@@ 1543,7 1543,7 @@ $.magnificPopup.registerModule('zoom', {


			/*
			

			Animating left + top + width/height looks glitchy in Firefox, but perfect in Chrome. And vice-versa.

			 */


@@ 1574,11 1574,11 @@ $.magnificPopup.registerModule('zoom', {

var IFRAME_NS = 'iframe',
	_emptyPage = '//about:blank',
	

	_fixIframeBugs = function(isShowing) {
		if(mfp.currTemplate[IFRAME_NS]) {
			var el = mfp.currTemplate[IFRAME_NS].find('iframe');
			if(el.length) { 
			if(el.length) {
				// reset src after the popup is closed to avoid "video keeps playing after popup is closed" bug
				if(!isShowing) {
					el[0].src = _emptyPage;


@@ 1605,8 1605,8 @@ $.magnificPopup.registerModule(IFRAME_NS, {
		// we don't care and support only one default type of URL by default
		patterns: {
			youtube: {
				index: 'youtube.com', 
				id: 'v=', 
				index: 'youtube.com',
				id: 'v=',
				src: '//www.youtube.com/embed/%id%?autoplay=1'
			},
			vimeo: {


@@ 1631,7 1631,7 @@ $.magnificPopup.registerModule(IFRAME_NS, {
						_fixIframeBugs(); // iframe if removed
					} else if(newType === IFRAME_NS) {
						_fixIframeBugs(true); // iframe is showing
					} 
					}
				}// else {
					// iframe source is switched, don't do anything
				//}


@@ 1645,7 1645,7 @@ $.magnificPopup.registerModule(IFRAME_NS, {
		getIframe: function(item, template) {
			var embedSrc = item.src;
			var iframeSt = mfp.st.iframe;
				

			$.each(iframeSt.patterns, function() {
				if(embedSrc.indexOf( this.index ) > -1) {
					if(this.id) {


@@ 1659,7 1659,7 @@ $.magnificPopup.registerModule(IFRAME_NS, {
					return false; // break;
				}
			});
			

			var dataObj = {};
			if(iframeSt.srcAction) {
				dataObj[iframeSt.srcAction] = embedSrc;


@@ 1716,7 1716,7 @@ $.magnificPopup.registerModule('gallery', {
				supportsFastClick = Boolean($.fn.mfpFastClick);

			mfp.direction = true; // true - next, false - prev
			

			if(!gSt || !gSt.enabled ) return false;

			_wrapClasses += ' mfp-gallery';


@@ 1755,16 1755,16 @@ $.magnificPopup.registerModule('gallery', {
			_mfpOn('BuildControls' + ns, function() {
				if(mfp.items.length > 1 && gSt.arrows && !mfp.arrowLeft) {
					var markup = gSt.arrowMarkup,
						arrowLeft = mfp.arrowLeft = $( markup.replace(/%title%/gi, gSt.tPrev).replace(/%dir%/gi, 'left') ).addClass(PREVENT_CLOSE_CLASS),			
						arrowLeft = mfp.arrowLeft = $( markup.replace(/%title%/gi, gSt.tPrev).replace(/%dir%/gi, 'left') ).addClass(PREVENT_CLOSE_CLASS),
						arrowRight = mfp.arrowRight = $( markup.replace(/%title%/gi, gSt.tNext).replace(/%dir%/gi, 'right') ).addClass(PREVENT_CLOSE_CLASS);

					var eName = supportsFastClick ? 'mfpFastClick' : 'click';
					arrowLeft[eName](function() {
						mfp.prev();
					});			
					});
					arrowRight[eName](function() {
						mfp.next();
					});	
					});

					// Polyfill for :before and :after (adds elements with classes mfp-a and mfp-b)
					if(mfp.isIE7) {


@@ 1784,21 1784,21 @@ $.magnificPopup.registerModule('gallery', {
				mfp._preloadTimeout = setTimeout(function() {
					mfp.preloadNearbyImages();
					mfp._preloadTimeout = null;
				}, 16);		
				}, 16);
			});


			_mfpOn(CLOSE_EVENT+ns, function() {
				_document.off(ns);
				mfp.wrap.off('click'+ns);
			

				if(mfp.arrowLeft && supportsFastClick) {
					mfp.arrowLeft.add(mfp.arrowRight).destroyMfpFastClick();
				}
				mfp.arrowRight = mfp.arrowLeft = null;
			});

		}, 
		},
		next: function() {
			mfp.direction = true;
			mfp.index = _getLoopedId(mfp.index + 1);


@@ 1963,11 1963,11 @@ $.magnificPopup.registerModule(RETINA_NS, {
 *
 * To unbind:
 * $('.your-el').destroyMfpFastClick();
 * 
 * 
 *
 *
 * Note that it's a very basic and simple implementation, it blocks ghost click on the same element where it was bound.
 * If you need something more advanced, use plugin by FT Labs https://github.com/ftlabs/fastclick
 * 
 *
 */

(function() {


@@ 2046,4 2046,4 @@ $.magnificPopup.registerModule(RETINA_NS, {
})();

/*>>fastclick*/
 _checkInstance(); })(window.jQuery || window.Zepto);
\ No newline at end of file
 _checkInstance(); })(window.jQuery || window.Zepto);

M package.json => package.json +1 -1
@@ 1,7 1,7 @@
{
  "name": "minimal-mistakes-theme",
  "author": "Michael Rose <michael@mademistakes.com>",
  "homepage": "http://mmistakes.github.io/minima-mistakes/",
  "homepage": "http://mmistakes.github.io/minimal-mistakes/",
  "repository": {
    "type": "git",
    "url": "git://github.com/mmistakes/minimal-mistakes.git"

M theme-setup/index.md => theme-setup/index.md +5 -5
@@ 29,7 29,7 @@ If you want to use Minimal Mistakes with an existing Jekyll site follow these st
3. Run `bundle install` to install all dependencies (Jekyll, [Jekyll-Sitemap](https://github.com/jekyll/jekyll-sitemap), [Octopress](https://github.com/octopress/octopress), etc)
4. Remove demo posts/pages and replace with your own posts, pages, and any other content you want to move over.
5. Update posts' and pages' YAML to match variables used by Minimal Mistakes. Full details below.
6. Update `_config.yml` and add navigation links. Full details below. 
6. Update `_config.yml` and add navigation links. Full details below.

**Pro-tip:** Delete the `gh-pages` branch after cloning and start fresh by branching off `master`. There is a bunch of garbage in `gh-pages` used for the theme's demo site that I'm guessing you won't want.
{: .notice}


@@ 88,7 88,7 @@ minimal-mistakes/
├── images/                      # images for posts and pages
├── 404.md                       # 404 page
├── feed.xml                     # Atom feed template
├── index.md                     # sample homepage. lists 5 latest posts 
├── index.md                     # sample homepage. lists 5 latest posts
├── posts/                       # sample post index page. lists all posts in reverse chronology
└── theme-setup/                 # theme setup page. safe to remove
{% endhighlight %}


@@ 119,7 119,7 @@ Examples:
url: http://mmistakes.github.io/minimal-mistakes
url: http://localhost:4000
url: //cooldude.github.io
url: 
url:
{% endhighlight %}

#### Google Analytics and Webmaster Tools


@@ 135,7 135,7 @@ To set what links appear in the top navigation edit `_data/navigation.yml`. Use 
  url: /portfolio/

- title: Made Mistakes
  url: http://mademistakes.com  
  url: http://mademistakes.com
{% endhighlight %}

---


@@ 328,4 328,4 @@ Found a bug or aren't quite sure how something works? By all means Ping me on Tw

## License

This theme is free and open source software, distributed under the MIT License. So feel free to use this Jekyll theme on your site without linking back to me or including a disclaimer. 
\ No newline at end of file
This theme is free and open source software, distributed under the MIT License. So feel free to use this Jekyll theme on your site without linking back to me or including a disclaimer.