diff --git a/Gemfile.lock b/Gemfile.lock
index 338b4aa..0528aef 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,17 +1,15 @@
GEM
remote: https://rubygems.org/
specs:
- addressable (2.5.2)
+ addressable (2.6.0)
public_suffix (>= 2.0.2, < 4.0)
colorator (1.1.0)
concurrent-ruby (1.1.4)
em-websocket (0.5.1)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.6.0)
- eventmachine (1.2.7)
eventmachine (1.2.7-x64-mingw32)
- ffi (1.9.25)
- ffi (1.9.25-x64-mingw32)
+ ffi (1.10.0-x64-mingw32)
forwardable-extended (2.6.0)
http_parser.rb (0.6.0)
i18n (0.9.5)
@@ -57,19 +55,18 @@ GEM
rouge (3.3.0)
ruby_dep (1.5.0)
safe_yaml (1.0.4)
- sass (3.7.2)
+ sass (3.7.3)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
- thread_safe (0.3.6)
- tzinfo (1.2.5)
- thread_safe (~> 0.1)
- tzinfo-data (1.2018.7)
+ tzinfo (2.0.0)
+ concurrent-ruby (~> 1.0)
+ tzinfo-data (1.2018.9)
tzinfo (>= 1.0.0)
+ wdm (0.1.1)
PLATFORMS
- ruby
x64-mingw32
DEPENDENCIES
@@ -77,6 +74,7 @@ DEPENDENCIES
jekyll-feed (~> 0.6)
minima (~> 2.0)
tzinfo-data
+ wdm (~> 0.1.0)
BUNDLED WITH
- 1.16.4
+ 2.0.1
diff --git a/_config.yml b/_config.yml
index d3c7c9f..7b862c5 100755
--- a/_config.yml
+++ b/_config.yml
@@ -13,7 +13,7 @@
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
-title: Quoke
+title: Quoke.
author: Joshua Byrd
email: phocks@gmail.com
description: >- # this means to ignore newlines until "baseurl:"
diff --git a/_includes/nav.html b/_includes/nav.html
index 6bc2b71..a020260 100644
--- a/_includes/nav.html
+++ b/_includes/nav.html
@@ -2,5 +2,4 @@
- About
diff --git a/_layouts/index.html b/_layouts/home.html
similarity index 95%
rename from _layouts/index.html
rename to _layouts/home.html
index 2ab4cbc..fd490e7 100644
--- a/_layouts/index.html
+++ b/_layouts/home.html
@@ -3,8 +3,7 @@
{% include head.html %}
{% include nav.html %}
-
- {{ site.tags.life }}
+
Quotations
{% assign sortedQuotations = site.quotations | sort: 'date' | reverse %}
{% for quotation in sortedQuotations limit:20 %}
@@ -35,7 +34,7 @@ Topics
{{ topic.title }}
- {% endfor %}
+ {% endfor %}
{% include foot.html %}
diff --git a/_layouts/quotation.html b/_layouts/quotation.html
index 4336c1e..cd49516 100644
--- a/_layouts/quotation.html
+++ b/_layouts/quotation.html
@@ -34,7 +34,6 @@
-
{% if page.topics %}
Topics:
diff --git a/_sass/_main.scss b/_sass/_main.scss
index f1c47f8..421bcf3 100644
--- a/_sass/_main.scss
+++ b/_sass/_main.scss
@@ -1,28 +1,31 @@
@import url("https://fonts.googleapis.com/css?family=Trocchi");
@import url("https://fonts.googleapis.com/css?family=IBM+Plex+Sans");
+@import url('https://fonts.googleapis.com/css?family=Press+Start+2P');
// Some variables
$color-light-grey: #ababab;
-$color-medium-grey: #777;
+$color-medium-grey: #676767;
+$color-dark-grey: #434343;
$page-gutter: 15px;
$quote-font-size: 22px;
$quote-line-height: 1.6em;
body {
+ background-color: black;
font-family: "IBM Plex Sans", sans-serif;
margin: 0;
- margin-bottom: 10px;
-}
-
-a {
- text-decoration: none;
- color: #121212;
- border-bottom: 1px dotted #ddd;
}
main {
- max-width: 780px;
+ color: white;
+ max-width: 960px;
padding: 0 $page-gutter;
+ margin-left: auto;
+ margin-right: auto;
+
+ a {
+ color: white;
+ }
}
.quotation-link,
diff --git a/_sass/_nav.scss b/_sass/_nav.scss
index 3c70deb..956d8db 100644
--- a/_sass/_nav.scss
+++ b/_sass/_nav.scss
@@ -1,5 +1,4 @@
nav {
- font-family: 'IBM Plex Sans', sans-serif;
background-color: black;
padding: 0px $page-gutter;
color: white;
@@ -11,7 +10,7 @@ nav {
}
h2 {
- font-family: 'Trocchi', serif;
+ font-family: "Press Start 2P", cursive;
display: inline-block;
margin-right: 10px;
margin-top: 10px;
@@ -21,10 +20,10 @@ nav {
span {
font-size: 14px;
position: relative;
- top: -1px;
+ top: -1px;
}
span a {
- text-decoration: underline;
+ text-decoration: underline;
}
}
diff --git a/_sass/_quotation.scss b/_sass/_quotation.scss
index 54c6935..cdaff74 100644
--- a/_sass/_quotation.scss
+++ b/_sass/_quotation.scss
@@ -1,7 +1,7 @@
.quotation-date,
.quotation-tags {
font-size: 14px;
- color: $color-light-grey;
+ color: $color-medium-grey;
margin-right: 10px;
a {
diff --git a/index.md b/index.md
index 2ea82a9..0671507 100644
--- a/index.md
+++ b/index.md
@@ -2,5 +2,5 @@
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
-layout: index
+layout: home
---