-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Iszak Bryan
committed
May 9, 2014
1 parent
2f902da
commit f7ec5e8
Showing
21 changed files
with
208 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
</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 © {{ site.time | date: '%Y' }} {{ site.author.title }}</p> | ||
</div> | ||
</div> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.