diff --git a/Gemfile b/Gemfile index 0e84e77..b89849d 100644 --- a/Gemfile +++ b/Gemfile @@ -1,8 +1,8 @@ -source 'https://rubygems.org' -ruby File.read('.ruby-version').strip +source "https://rubygems.org" +ruby File.read(".ruby-version").strip gem "github-pages" -gem 'ffi', '1.9.0' +gem "ffi", "1.9.0" group :test do gem "html-proofer" diff --git a/_includes/breadcrumbs.html b/_includes/breadcrumbs.html index 2022d5a..2552e45 100644 --- a/_includes/breadcrumbs.html +++ b/_includes/breadcrumbs.html @@ -1,5 +1,5 @@ {% unless page.hide_breadcrumbs == true %} -
{{ page.how }} diff --git a/_layouts/license.html b/_layouts/license.html index b0f6b6c..602c1c8 100644 --- a/_layouts/license.html +++ b/_layouts/license.html @@ -1,7 +1,7 @@ {% include header.html %}
{{ content | replace:"<","[" | replace:">","]" }}
diff --git a/css/application.css b/css/application.css
index ad074f5..eccdcf4 100644
--- a/css/application.css
+++ b/css/application.css
@@ -114,7 +114,7 @@ a:hover {
h1 {
color: #443a33;
- font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif;
+ font-family: Chivo, "Helvetica Neue", Helvetica, Arial, serif;
font-size: 40px;
font-weight: 900;
line-height: 1.1;
@@ -123,7 +123,7 @@ h1 {
h2 {
color: #443a33;
- font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif;
+ font-family: Chivo, "Helvetica Neue", Helvetica, Arial, serif;
font-size: 18px;
font-weight: 900;
line-height: 1.1;
@@ -133,7 +133,7 @@ h2 {
h3 {
color: #443a33;
- font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif;
+ font-family: Chivo, "Helvetica Neue", Helvetica, Arial, serif;
font-size: 15px;
font-weight: 900;
line-height: 1.1;
@@ -143,7 +143,7 @@ h3 {
h5 {
color: #443a33;
- font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif;
+ font-family: Chivo, "Helvetica Neue", Helvetica, Arial, serif;
font-size: 14px;
font-weight: 900;
line-height: 1.1;
@@ -175,7 +175,7 @@ strong {
}
.home h2 {
color: #149ad4;
- font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif;
+ font-family: Chivo, "Helvetica Neue", Helvetica, Arial, serif;
font-size: 27px;
font-weight: 900;
line-height: 70px;
@@ -208,7 +208,7 @@ strong {
}
.triptych h3 {
color: #443a33;
- font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif;
+ font-family: Chivo, "Helvetica Neue", Helvetica, Arial, serif;
font-size: 22px;
font-weight: 900;
line-height: 1.1;
@@ -246,7 +246,7 @@ strong {
width: 280px;
}
.license-rules .name a {
- font-family: 'Chivo', 'Helvetica Neue', Helvetica, Arial, serif;
+ font-family: Chivo, "Helvetica Neue", Helvetica, Arial, serif;
font-size: 28px;
font-weight: 900;
line-height: 1.1;
diff --git a/index.html b/index.html
index fe5bc4b..21797e4 100644
--- a/index.html
+++ b/index.html
@@ -12,9 +12,9 @@ description: A site to provide non-judgmental guidance on choosing a license for
}
@@ -24,9 +24,9 @@ description: A site to provide non-judgmental guidance on choosing a license for jQuery and Rails use the MIT License.
@@ -36,9 +36,9 @@ description: A site to provide non-judgmental guidance on choosing a license for Apache, SVN, and NuGet use the Apache License.
diff --git a/javascripts/app.coffee b/javascripts/app.coffee index 2bb3806..2a15f13 100644 --- a/javascripts/app.coffee +++ b/javascripts/app.coffee @@ -3,7 +3,7 @@ class Choosealicense # Checks if Flash is available in the client. flashAvailable: -> if ActiveXObject? - !!(new ActiveXObject('ShockwaveFlash.ShockwaveFlash')) + !!(new ActiveXObject("ShockwaveFlash.ShockwaveFlash")) else !!navigator.mimeTypes["application/x-shockwave-flash"] diff --git a/javascripts/app.js b/javascripts/app.js index be3bca0..ac5af94 100644 --- a/javascripts/app.js +++ b/javascripts/app.js @@ -5,7 +5,7 @@ Choosealicense = (function() { Choosealicense.prototype.flashAvailable = function() { if (typeof ActiveXObject !== "undefined" && ActiveXObject !== null) { - return !!(new ActiveXObject('ShockwaveFlash.ShockwaveFlash')); + return !!(new ActiveXObject("ShockwaveFlash.ShockwaveFlash")); } else { return !!navigator.mimeTypes["application/x-shockwave-flash"]; } diff --git a/licenses.html b/licenses.html index 32f7035..c26bc9a 100644 --- a/licenses.html +++ b/licenses.html @@ -9,12 +9,12 @@ class: license-types {% for page in site.pages %} {% if page.layout == "license" %} {% if page.featured %} -
+ | {{ page.title }} | -+ | {{ page.description }} View full license » |
---|
+ | {{ page.title }} | -+ | {{ page.description }} View full license » |
---|