From 0eecdb5cc5e93db34ecae22df1e4f1caf2da84c4 Mon Sep 17 00:00:00 2001 From: Tim Lind Date: Wed, 7 May 2014 12:59:06 +0200 Subject: [PATCH 01/14] Initial commit with humans.txt --- humans.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 humans.txt diff --git a/humans.txt b/humans.txt new file mode 100644 index 0000000..66ac96b --- /dev/null +++ b/humans.txt @@ -0,0 +1 @@ +Site for Incremental Code, by Tim Lind. From 8f588c91fd5b9d9e24f06f9421be3b4f7c75f3c9 Mon Sep 17 00:00:00 2001 From: Tim Lind Date: Thu, 3 Jul 2014 18:31:15 +0200 Subject: [PATCH 02/14] Gem file for github-pages --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Gemfile diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..053c27d --- /dev/null +++ b/Gemfile @@ -0,0 +1,2 @@ +source 'https://rubygems.org' +gem 'github-pages' From 0b280b9c870c0658e2590e39631a4c6bb78c3d4a Mon Sep 17 00:00:00 2001 From: Tim Lind Date: Fri, 4 Jul 2014 16:04:56 +0200 Subject: [PATCH 03/14] Jekyll config w/ nice permalink structure + layout --- .gitignore | 2 ++ _config.yml | 8 ++++++++ 2 files changed, 10 insertions(+) create mode 100644 .gitignore create mode 100644 _config.yml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ed90730 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +_site +Gemfile.lock diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..bba86c4 --- /dev/null +++ b/_config.yml @@ -0,0 +1,8 @@ +permalink: "/:categories/:title" + +defaults: + - + scope: + path: "" + values: + layout: "main" From 36d09987c7bad4e5bdbe548419f8b8fe99249fa5 Mon Sep 17 00:00:00 2001 From: Tim Lind Date: Fri, 4 Jul 2014 16:05:16 +0200 Subject: [PATCH 04/14] Layout file and some retro mono styling --- _layouts/main.html | 26 ++++++++++++++++++++++++++ theme/style.css | 24 ++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 _layouts/main.html create mode 100644 theme/style.css diff --git a/_layouts/main.html b/_layouts/main.html new file mode 100644 index 0000000..a7b0b58 --- /dev/null +++ b/_layouts/main.html @@ -0,0 +1,26 @@ + + + + Incremental Code: Internet Software Studio + + + + + +

{{ page.title }}

+ + {{ content }} + +

Say hello...

+ +
Email
hello@incremental.co
+
Twitter
@incrementalcode
+
Location
CodeBridge, Claremont, Cape Town
+ +

Recent articles

+ + {% for post in site.posts | group_by: "category" %} +
#{{ post.category }} {{ post.title }}
+ {% endfor %} + + \ No newline at end of file diff --git a/theme/style.css b/theme/style.css new file mode 100644 index 0000000..e716788 --- /dev/null +++ b/theme/style.css @@ -0,0 +1,24 @@ +html { + text-align: center; +} + +body { + font-family: Monospace; + font-weight: normal; + + display: inline-block; + text-align: left; +} + +h1, h2 { + font-weight: normal; + font-size: large; + text-align: center; + + margin-top: 50px; + margin-bottom: 50px; +} + +dt, dd { + display: inline-block; +} From 80865abbf5aa26a3533de7a04bcc502efa31f1db Mon Sep 17 00:00:00 2001 From: Tim Lind Date: Fri, 4 Jul 2014 16:05:32 +0200 Subject: [PATCH 05/14] Homepage with descriptions of spaces --- index.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..41963c0 --- /dev/null +++ b/index.html @@ -0,0 +1,12 @@ +--- +layout: main + +title: Incremental Code Internet Software Studio +--- +
+
Agency ..........
Work on behalf of companies
+
Lab .............
Self-sustaining products
+
Playground ......
Quick products that spark our interest
+
Lair ............
Technically driven explorations
+
BTS .............
Behind the Scenes articles
+
From 6e3e48c58123821c4a1cb1763048e999f208c66b Mon Sep 17 00:00:00 2001 From: Tim Lind Date: Fri, 4 Jul 2014 16:06:03 +0200 Subject: [PATCH 06/14] Example posts --- _posts/lab/2014-01-01-lab.md | 5 +++++ _posts/lab/2014-01-01-startup-conscious.md | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 _posts/lab/2014-01-01-lab.md create mode 100644 _posts/lab/2014-01-01-startup-conscious.md diff --git a/_posts/lab/2014-01-01-lab.md b/_posts/lab/2014-01-01-lab.md new file mode 100644 index 0000000..8559ade --- /dev/null +++ b/_posts/lab/2014-01-01-lab.md @@ -0,0 +1,5 @@ +--- +title: Lab +category: Lab +--- +# Labs \ No newline at end of file diff --git a/_posts/lab/2014-01-01-startup-conscious.md b/_posts/lab/2014-01-01-startup-conscious.md new file mode 100644 index 0000000..541fdd7 --- /dev/null +++ b/_posts/lab/2014-01-01-startup-conscious.md @@ -0,0 +1,3 @@ +--- +category: Lab +--- \ No newline at end of file From 09612b504c24d67d2a59a73718d65be7b1d0df4c Mon Sep 17 00:00:00 2001 From: Tim Lind Date: Fri, 4 Jul 2014 16:08:24 +0200 Subject: [PATCH 07/14] Use a better markdown engine --- _config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/_config.yml b/_config.yml index bba86c4..de35d88 100644 --- a/_config.yml +++ b/_config.yml @@ -1,4 +1,5 @@ permalink: "/:categories/:title" +markdown: kramdown defaults: - From 8a186c8ae9908b2676eb8b25dbdefe3c513062de Mon Sep 17 00:00:00 2001 From: Tim Lind Date: Fri, 4 Jul 2014 16:12:44 +0200 Subject: [PATCH 08/14] Exclude date in post to mark as draft in _posts --- _posts/lab/{2014-01-01-lab.md => lab.md} | 0 .../lab/{2014-01-01-startup-conscious.md => startup-conscious.md} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename _posts/lab/{2014-01-01-lab.md => lab.md} (100%) rename _posts/lab/{2014-01-01-startup-conscious.md => startup-conscious.md} (100%) diff --git a/_posts/lab/2014-01-01-lab.md b/_posts/lab/lab.md similarity index 100% rename from _posts/lab/2014-01-01-lab.md rename to _posts/lab/lab.md diff --git a/_posts/lab/2014-01-01-startup-conscious.md b/_posts/lab/startup-conscious.md similarity index 100% rename from _posts/lab/2014-01-01-startup-conscious.md rename to _posts/lab/startup-conscious.md From 4a97068d65373798b80309131740ce961ec2ad99 Mon Sep 17 00:00:00 2001 From: Tim Lind Date: Fri, 4 Jul 2014 16:13:14 +0200 Subject: [PATCH 09/14] Only show 'recent articles' link if there are posts --- _layouts/main.html | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/_layouts/main.html b/_layouts/main.html index a7b0b58..a092555 100644 --- a/_layouts/main.html +++ b/_layouts/main.html @@ -17,10 +17,12 @@

Say hello...

Twitter
@incrementalcode
Location
CodeBridge, Claremont, Cape Town
-

Recent articles

+ {% if site.posts > 0 %} +

Recent articles

- {% for post in site.posts | group_by: "category" %} -
#{{ post.category }} {{ post.title }}
- {% endfor %} + {% for post in site.posts | group_by: "category" %} +
#{{ post.category }} {{ post.title }}
+ {% endfor %} + {% endif %} \ No newline at end of file From b27d1365eb4b24953bb601e32db7e67931f9e925 Mon Sep 17 00:00:00 2001 From: Tim Lind Date: Fri, 4 Jul 2014 16:22:18 +0200 Subject: [PATCH 10/14] Contact section styling / alignment --- _layouts/main.html | 13 +++++++++---- theme/style.css | 4 ++++ 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/_layouts/main.html b/_layouts/main.html index a092555..f3d37a2 100644 --- a/_layouts/main.html +++ b/_layouts/main.html @@ -4,6 +4,11 @@ Incremental Code: Internet Software Studio + @@ -11,11 +16,11 @@

{{ page.title }}

{{ content }} -

Say hello...

+

contact the humans

-
Email
hello@incremental.co
-
Twitter
@incrementalcode
-
Location
CodeBridge, Claremont, Cape Town
+
Email ...........
hello@incremental.co
+
Twitter .........
@incrementalcode
+
Location ........
CodeBridge, Claremont, Cape Town
{% if site.posts > 0 %}

Recent articles

diff --git a/theme/style.css b/theme/style.css index e716788..15e2680 100644 --- a/theme/style.css +++ b/theme/style.css @@ -19,6 +19,10 @@ h1, h2 { margin-bottom: 50px; } +h2 { + text-align: left; +} + dt, dd { display: inline-block; } From 8d60a57f7a7247ef7768fd7004f4c2774c76924a Mon Sep 17 00:00:00 2001 From: Tim Lind Date: Fri, 4 Jul 2014 16:24:49 +0200 Subject: [PATCH 11/14] Ordering of homepgage space descriptions --- _layouts/main.html | 2 +- index.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_layouts/main.html b/_layouts/main.html index f3d37a2..025330c 100644 --- a/_layouts/main.html +++ b/_layouts/main.html @@ -16,7 +16,7 @@

{{ page.title }}

{{ content }} -

contact the humans

+

~ contact the humans ~

Email ...........
hello@incremental.co
Twitter .........
@incrementalcode
diff --git a/index.html b/index.html index 41963c0..22bb205 100644 --- a/index.html +++ b/index.html @@ -4,9 +4,9 @@ title: Incremental Code Internet Software Studio ---
-
Agency ..........
Work on behalf of companies
Lab .............
Self-sustaining products
-
Playground ......
Quick products that spark our interest
Lair ............
Technically driven explorations
+
Playground ......
Quick products that spark our interest
+
Consultancy .....
Work on behalf of forward thinking companies
BTS .............
Behind the Scenes articles
From 4d044bcde426f4b66db31137c6309744a9f9ac50 Mon Sep 17 00:00:00 2001 From: Tim Lind Date: Fri, 4 Jul 2014 16:35:25 +0200 Subject: [PATCH 12/14] Funkier page header characters, set alignment --- _layouts/main.html | 5 ++++- index.html | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/_layouts/main.html b/_layouts/main.html index 025330c..b6f0e8d 100644 --- a/_layouts/main.html +++ b/_layouts/main.html @@ -5,6 +5,9 @@