Skip to content
This repository has been archived by the owner on Dec 23, 2020. It is now read-only.

Commit

Permalink
Merged from upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
paskal committed Jul 22, 2014
1 parent 6f9cce7 commit 1e44693
Show file tree
Hide file tree
Showing 239 changed files with 3,259 additions and 40,438 deletions.
3 changes: 0 additions & 3 deletions sass/custom/_syntax.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ body {
pre {
white-space: pre;
}
.gutter {
display: none;
}
}
}
}
8 changes: 6 additions & 2 deletions sass/partials/_header.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
header[role=banner] {
header[role=banner] .navbar {
/* fix email / rss icon for bootstrap navbar */
.navbar-default .navbar-nav > li img {
li img {
height: 18px;
}
a.subscribe-rss, a.subscribe-email {
padding-top: 0.9em;
padding-bottom: 0.9em;
}
}
5 changes: 2 additions & 3 deletions sass/partials/_syntax.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ figcaption + .highlight {
}

.highlight .line-numbers, .gist-file .line-numbers {
display: none; // XXX
text-align: right;
font-size: 13px;
line-height: 1.45em;
Expand All @@ -27,7 +26,7 @@ figcaption + .highlight {
text-shadow: darken($base02, 10) 0 -1px;
}
span { color: $base01 !important; }
padding: .8em !important;
padding: 1em .8em .8em .8em !important;
@include border-radius(0);
}

Expand Down Expand Up @@ -269,7 +268,7 @@ figure.code:not(.panel), .gist {
@include border-radius(5px);
span, a[href*='#file'] {
font-size: 16px;
line-height: 1.1;
line-height: 1.45em;
font-weight: bold;
}
}
Expand Down
2 changes: 0 additions & 2 deletions source/_includes/after_footer.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
<script src="{{ root_url }}/assets/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="{{ root_url }}/javascripts/modernizr-2.0.js"></script>
{% include disqus.html %}
{% include facebook_like.html %}
{% include google_plus_one.html %}
Expand Down
2 changes: 1 addition & 1 deletion source/_includes/archive_post.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% capture category %}{{ post.categories | size }}{% endcapture %}
<h1 itemprop="name headline"><a href="{{ root_url }}{{ post.url }}" itemprop="url">{{post.title}}</a></h1>
<h1 itemprop="name headline"><a href="{{ root_url }}{{ post.url }}" itemprop="url">{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a></h1>
<p class="meta text-muted">
{% include post/date.html %}{{ time }}
{% include post/categories.html %}
Expand Down
5 changes: 2 additions & 3 deletions source/_includes/custom/after_footer.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
{% comment %}
Add content to be output at the bottom of each page. (You might use this for analytics scripts, for example)
{% endcomment %}
<script src="{{ root_url }}/assets/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="{{ root_url }}/javascripts/modernizr-2.0.js"></script>
4 changes: 2 additions & 2 deletions source/_includes/custom/category_feed.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ layout: nil
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">

<title><![CDATA[{{ page.title }} | {{ site.title }}]]></title>
<title><![CDATA[{% if site.titlecase %}{{ page.title | titlecase | cdata_escape }}{% else %}{{ page.title | cdata_escape }}{% endif %} | {{ site.title | cdata_escape }}]]></title>
<link href="{{ site.url }}/{{ page.feed_url }}" rel="self"/>
<link href="{{ site.url }}/"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
Expand All @@ -17,7 +17,7 @@ layout: nil

{% for post in site.categories[page.category] limit: 5 %}
<entry>
<title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
<title type="html"><![CDATA[{% if site.titlecase %}{{ post.title | titlecase | cdata_escape }}{% else %}{{ post.title | cdata_escape }}{% endif %}]]></title>
<link href="{{ site.url }}{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>{{ site.url }}{{ post.id }}</id>
Expand Down
3 changes: 2 additions & 1 deletion source/_includes/custom/head.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<script src="{{ root_url }}/javascripts/libs/jquery/jquery-2.0.3.min.js"></script>

<link href="{{ root_url }}/assets/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="{{ root_url }}/assets/bootstrap/dist/css/bootstrap-theme.min.css" rel="stylesheet" type="text/css">
<link href="{{ root_url }}/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
12 changes: 7 additions & 5 deletions source/_includes/head.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title>
<title>{% if page.title %}{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %} - {% endif %}{{ site.title }}</title>
<meta name="author" content="{{ site.author }}">

{% if page.description %}<meta name="description" content="{{ page.description | strip_html | condense_spaces | truncate:150 }}">{% endif %}
Expand All @@ -22,6 +20,10 @@

{% include custom/head.html %}

<script src="{{ root_url }}/javascripts/libs/jquery/jquery-2.0.3.min.js"></script>
{% comment %}
screen.css is included after custom/head so it can override stuff like Bootstrap fonts etc.
{% endcomment %}
<link href="{{ root_url }}/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">

{% include google_analytics.html %}
</head>
14 changes: 0 additions & 14 deletions source/assets/bootstrap/.editorconfig

This file was deleted.

8 changes: 0 additions & 8 deletions source/assets/bootstrap/.gitattributes

This file was deleted.

42 changes: 0 additions & 42 deletions source/assets/bootstrap/.gitignore

This file was deleted.

28 changes: 0 additions & 28 deletions source/assets/bootstrap/.travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion source/assets/bootstrap/CNAME

This file was deleted.

Loading

0 comments on commit 1e44693

Please sign in to comment.