Skip to content

Commit

Permalink
Updated to Jekyll 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Iszak Bryan committed May 9, 2014
1 parent 2f902da commit f7ec5e8
Show file tree
Hide file tree
Showing 21 changed files with 208 additions and 184 deletions.
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source 'https://rubygems.org'

gem 'compass'
gem 'compass', '~> 0.12.6'

gem 'jekyll'
gem 'jekyll-assets'
gem 'jekyll', '~> 2.0.3'
gem 'jekyll-assets', '~> 0.7.8'
78 changes: 47 additions & 31 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,42 +2,59 @@ GEM
remote: https://rubygems.org/
specs:
blankslate (2.1.2.4)
chunky_png (1.2.9)
celluloid (0.15.2)
timers (~> 1.1.0)
celluloid-io (0.15.0)
celluloid (>= 0.15.0)
nio4r (>= 0.5.0)
chunky_png (1.3.1)
classifier (1.3.4)
fast-stemmer (>= 1.0.0)
coffee-script (2.2.0)
coffee-script-source
execjs
coffee-script-source (1.7.0)
colorator (0.1)
commander (4.1.5)
highline (~> 1.6.11)
compass (0.12.2)
compass (0.12.6)
chunky_png (~> 1.2)
fssm (>= 0.2.7)
sass (~> 3.1)
sass (~> 3.2.19)
execjs (2.0.2)
fast-stemmer (1.0.2)
ffi (1.9.3)
fssm (0.2.10)
highline (1.6.20)
hike (1.2.3)
jekyll (1.4.2)
jekyll (2.0.3)
classifier (~> 1.3)
colorator (~> 0.1)
commander (~> 4.1.3)
liquid (~> 2.5.2)
listen (~> 1.3)
maruku (~> 0.7.0)
jekyll-coffeescript (~> 1.0)
jekyll-sass-converter (~> 1.0)
kramdown (~> 1.3)
liquid (~> 2.5.5)
listen (~> 2.5)
mercenary (~> 0.3.3)
pygments.rb (~> 0.5.0)
redcarpet (~> 2.3.0)
safe_yaml (~> 0.9.7)
redcarpet (~> 3.1)
safe_yaml (~> 1.0)
toml (~> 0.1.0)
jekyll-assets (0.7.4)
jekyll (~> 1.0)
jekyll-assets (0.7.8)
jekyll (>= 1.0.0, < 3.0.0)
sass
sprockets (~> 2.10)
liquid (2.5.4)
listen (1.3.1)
jekyll-coffeescript (1.0.0)
coffee-script (~> 2.2)
jekyll-sass-converter (1.0.0)
sass (~> 3.2)
kramdown (1.3.3)
liquid (2.5.5)
listen (2.7.4)
celluloid (>= 0.15.2)
celluloid-io (>= 0.15.0)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
rb-kqueue (>= 0.2)
maruku (0.7.0)
multi_json (1.8.2)
mercenary (0.3.3)
multi_json (1.10.0)
nio4r (1.0.0)
parslet (1.5.0)
blankslate (~> 2.0)
posix-spawn (0.3.8)
Expand All @@ -46,27 +63,26 @@ GEM
yajl-ruby (~> 1.1.0)
rack (1.5.2)
rb-fsevent (0.9.4)
rb-inotify (0.9.3)
rb-inotify (0.9.4)
ffi (>= 0.5.0)
rb-kqueue (0.2.0)
ffi (>= 0.5.0)
redcarpet (2.3.0)
safe_yaml (0.9.7)
sass (3.2.13)
sprockets (2.10.1)
redcarpet (3.1.1)
safe_yaml (1.0.3)
sass (3.2.19)
sprockets (2.12.1)
hike (~> 1.2)
multi_json (~> 1.0)
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
tilt (1.4.1)
toml (0.1.0)
timers (1.1.0)
toml (0.1.1)
parslet (~> 1.5.0)
yajl-ruby (1.1.0)

PLATFORMS
ruby

DEPENDENCIES
compass
jekyll
jekyll-assets
compass (~> 0.12.6)
jekyll (~> 2.0.3)
jekyll-assets (~> 0.7.8)
13 changes: 8 additions & 5 deletions _config.yml
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Iszak Bryan

pygments: true
title: Iszak Bryan
description: "Web Application Developer"
baseurl: ""
url: "http://iszak.net"

highlighter: true
permalink: /:year/:month/:day/:title.html

author:
Expand All @@ -10,7 +12,8 @@ author:
twitter: iszak
gplus: 100069654061825702190

exclude: ['vendor']

gems: [jekyll-assets]

assets:
js_compressor: uglifier
Expand All @@ -20,4 +23,4 @@ assets:
- _assets/javascripts
- _assets/stylesheets
- _assets/images
- _assets/fonts
- _assets/fonts
16 changes: 16 additions & 0 deletions _includes/foot.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-5068780-2']);
_gaq.push(['_setDomainName', 'iszak.net']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';

var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
34 changes: 34 additions & 0 deletions _includes/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<footer>
<div class="row-fluid">
<div class="span12">
<div class="ribbon">
<ul class="networks">
<li class="network">
<a class="network-link" href="https://github.com/{{ site.author.github }}">
<i class="network-icon icon-github-alt"></i>
GitHub
</a>
</li>
<li class="network">
<a class="network-link" href="https://twitter.com/{{ site.author.twitter }}">
<i class="network-icon icon-twitter"></i>
Twitter
</a>
</li>
<li class="network">
<a class="network-link" href="https://plus.google.com/{{ site.author.gplus }}">
<i class="network-icon icon-google-plus"></i>
Google+
</a>
</li>
</ul>
</div>
</div>
</div>

<div class="row-fluid">
<div class="span12">
<p class="copyright">Copyright &copy; {{ site.time | date: '%Y' }} {{ site.author.title }}</p>
</div>
</div>
</footer>
17 changes: 17 additions & 0 deletions _includes/head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<head>
<meta charset="utf-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="{{ site.author.name }}">

<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">

{% stylesheet vendor.css %}
{% stylesheet application.css %}

{% if page.title %}
<title>{{ site.title }} - {{ page.title }}</title>
{% else %}
<title>{{ site.title }}</title>
{% endif %}
</head>
31 changes: 31 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<header class="row-fluid header">
<div class="span4 title" role="banner">
<h1 class="title-name">{{ site.title }}</h1>
<h2 class="title-tagline">Web Application Developer</h2>
</div>


<div class="span8">
<nav class="nav" role="navigation">
<ul class="nav-list">
<li class="nav-list-item">
<a class="nav-list-item-link" href="{{ page.baseurl }}">
Home
</a>
</li>

<li class="nav-list-item">
<a class="nav-list-item-link" href="{{ page.baseurl }}about.html">
About
</a>
</li>

<li class="nav-list-item">
<a class="nav-list-item-link" href="{{ page.baseurl }}contact.html">
Contact
</a>
</li>
</ul>
</nav>
</div>
</header>
34 changes: 34 additions & 0 deletions _includes/sidebar.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<div class="span4">
<aside class="latest">
<h4 class="latest-title">Latest blog posts</h4>
<ul class="latest-posts">
{% for post in site.posts offset: 0 limit: 6 %}
<li class="latest-post">
{% if post.layout == 'link' %}
<a class="latest-post-link" href="{{ post.link }}">
{% else %}
<a class="latest-post-link" href="{{ post.url }}">
{% endif %}

{% if post.layout == 'post' %}
<i class="latest-post-icon icon-file-text-alt"></i>
{% endif %}

{% if post.layout == 'link' %}
<i class="latest-post-icon icon-link"></i>
{% endif %}

{% if post.layout == 'series' %}
<i class="latest-post-icon icon-list"></i>
{% endif %}
{{ post.title }}

<time class="latest-post-time" datetime="{{ post.date | date:'%Y-%m-%d %H:%M:%S' }}" pubdate>
{{ post.date | date_to_string }}
</time>
</a>
</li>
{% endfor %}
</ul>
</aside>
</div>
Loading

0 comments on commit f7ec5e8

Please sign in to comment.