Skip to content

Commit ddd7cd8

Browse files
committed
initial site commit
1 parent 955bb1d commit ddd7cd8

15 files changed

+825
-0
lines changed

_config.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
name: zoblog
2+
markdown: redcarpet
3+
pygments: true
4+
baseurl: /blog

_layouts/default.html

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6+
<title>{{ page.title }}</title>
7+
<meta name="viewport" content="width=device-width">
8+
<link rel="icon" type="image/png" href="{{ site.baseurl }}/assets/favicon.png" />
9+
<link rel="shortcut icon" type="image/png" href="{{ site.baseurl }}/assets/favicon.png" />
10+
11+
<!-- syntax highlighting CSS -->
12+
<link rel="stylesheet" href="{{ site.baseurl }}/css/syntax.css">
13+
14+
<!-- Custom CSS -->
15+
<link rel="stylesheet" href="{{ site.baseurl }}/css/main.css">
16+
17+
</head>
18+
<body>
19+
20+
<div class="site">
21+
22+
<!-- header -->
23+
<div class="header">
24+
<h1 class="title"><a href="{{ site.baseurl }}/">{{ site.name }}</a></h1>
25+
<span class="meta"> / notes to anyone who is interested</span>
26+
<span style="float:right;" class="metasmaller"><a href="https://zobkiw.github.io">zobkiw.github.io</a> / <a href="https://twitter.com/zobskewed">@zobskewed</a></span>
27+
</div>
28+
29+
<!-- content -->
30+
{{ content }}
31+
32+
<!-- hardcoded stuff -->
33+
34+
<!-- footer -->
35+
<div class="footer">
36+
<span class="meta"><a href="https://zobkiw.github.io">zobkiw.github.io</a> / <a href="https://twitter.com/zobskewed">@zobskewed</a></span>
37+
</div>
38+
</div>
39+
40+
</body>
41+
</html>

_layouts/post.html

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
layout: default
3+
---
4+
<span class="metasmaller">&laquo; <a href="{{ site.baseurl }}/">home</a></span>
5+
<br /><br />
6+
7+
<span class="metalarger">{{ page.title }}</span>
8+
<span class="metasmaller metalighter"> &nbsp;/&nbsp; {{ page.date | date_to_string }}</span>
9+
<span class="metasmaller metalighter"> &nbsp;/&nbsp; {{ page.tags | array_to_sentence_string }}</span>
10+
11+
<div class="post">
12+
{{ content }}
13+
</div>
14+
15+
<br />
16+
17+
<span class="metasmaller">&laquo; <a href="{{ site.baseurl }}/">home</a></span>

_posts/2014-04-01-lorem-ipsum.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
layout: post
3+
published: true
4+
tags: notes
5+
---
6+
7+
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
8+
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
9+
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
10+
consequat.
11+
12+
Duis aute irure dolor in reprehenderit in voluptate velit esse
13+
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
14+
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
15+
16+
<!--
17+
You'll find this post in your `_posts` directory - edit this post and re-build (or run with the `-w` switch) to see your changes!
18+
To add new posts, simply add a file in the `_posts` directory that follows the convention: YYYY-MM-DD-name-of-post.ext.
19+
20+
Jekyll also offers powerful support for code snippets:
21+
22+
{% highlight ruby %}
23+
def print_hi(name)
24+
puts "Hi, #{name}"
25+
end
26+
print_hi('Tom')
27+
#=> prints 'Hi, Tom' to STDOUT.
28+
{% endhighlight %}
29+
30+
Check out the [Jekyll docs][jekyll] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll's GitHub repo][jekyll-gh].
31+
32+
[jekyll-gh]: https://github.com/mojombo/jekyll
33+
[jekyll]: http://jekyllrb.com
34+
-->

_posts/2014-04-15-welcome.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: post
3+
published: true
4+
tags: notes hello
5+
---
6+
7+
Playing around with [Jekyll][jekyll] to see where it takes me. With the occasional thing to say that requires more than 140 characters, I figured I would throw this together. So there you have it!
8+
9+
{% highlight objective-c %}
10+
- (BOOL)headInClouds {
11+
return YES;
12+
}
13+
{% endhighlight %}
14+
15+
[jekyll]: http://jekyllrb.com

_site/2014/04/01/lorem-ipsum.html

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6+
<title>Lorem Ipsum</title>
7+
<meta name="viewport" content="width=device-width">
8+
<link rel="icon" type="image/png" href="/blog/assets/favicon.png" />
9+
<link rel="shortcut icon" type="image/png" href="/blog/assets/favicon.png" />
10+
11+
<!-- syntax highlighting CSS -->
12+
<link rel="stylesheet" href="/blog/css/syntax.css">
13+
14+
<!-- Custom CSS -->
15+
<link rel="stylesheet" href="/blog/css/main.css">
16+
17+
</head>
18+
<body>
19+
20+
<div class="site">
21+
22+
<!-- header -->
23+
<div class="header">
24+
<h1 class="title"><a href="/blog/">zoblog</a></h1>
25+
<span class="meta"> / notes to anyone who is interested</span>
26+
<span style="float:right;" class="metasmaller"><a href="https://zobkiw.github.io">zobkiw.github.io</a> / <a href="https://twitter.com/zobskewed">@zobskewed</a></span>
27+
</div>
28+
29+
<!-- content -->
30+
<span class="metasmaller">&laquo; <a href="/blog/">home</a></span>
31+
<br /><br />
32+
33+
<span class="metalarger">Lorem Ipsum</span>
34+
<span class="metasmaller metalighter"> &nbsp;/&nbsp; 01 Apr 2014</span>
35+
<span class="metasmaller metalighter"> &nbsp;/&nbsp; notes</span>
36+
37+
<div class="post">
38+
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
39+
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
40+
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
41+
consequat. </p>
42+
43+
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse
44+
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
45+
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
46+
47+
<!--
48+
You'll find this post in your `_posts` directory - edit this post and re-build (or run with the `-w` switch) to see your changes!
49+
To add new posts, simply add a file in the `_posts` directory that follows the convention: YYYY-MM-DD-name-of-post.ext.
50+
51+
Jekyll also offers powerful support for code snippets:
52+
53+
54+
<div class="highlight"><pre><code class="ruby"><span class="k">def</span> <span class="nf">print_hi</span><span class="p">(</span><span class="nb">name</span><span class="p">)</span>
55+
<span class="nb">puts</span> <span class="s2">&quot;Hi, </span><span class="si">#{</span><span class="nb">name</span><span class="si">}</span><span class="s2">&quot;</span>
56+
<span class="k">end</span>
57+
<span class="n">print_hi</span><span class="p">(</span><span class="s1">&#39;Tom&#39;</span><span class="p">)</span>
58+
<span class="c1">#=&gt; prints &#39;Hi, Tom&#39; to STDOUT.</span>
59+
</code></pre></div>
60+
61+
62+
Check out the [Jekyll docs][jekyll] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll's GitHub repo][jekyll-gh].
63+
64+
65+
66+
-->
67+
68+
</div>
69+
70+
<br />
71+
72+
<span class="metasmaller">&laquo; <a href="/blog/">home</a></span>
73+
74+
75+
<!-- hardcoded stuff -->
76+
77+
<!-- footer -->
78+
<div class="footer">
79+
<span class="meta"><a href="https://zobkiw.github.io">zobkiw.github.io</a> / <a href="https://twitter.com/zobskewed">@zobskewed</a></span>
80+
</div>
81+
</div>
82+
83+
</body>
84+
</html>

_site/2014/04/15/welcome.html

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6+
<title>Welcome</title>
7+
<meta name="viewport" content="width=device-width">
8+
<link rel="icon" type="image/png" href="/blog/assets/favicon.png" />
9+
<link rel="shortcut icon" type="image/png" href="/blog/assets/favicon.png" />
10+
11+
<!-- syntax highlighting CSS -->
12+
<link rel="stylesheet" href="/blog/css/syntax.css">
13+
14+
<!-- Custom CSS -->
15+
<link rel="stylesheet" href="/blog/css/main.css">
16+
17+
</head>
18+
<body>
19+
20+
<div class="site">
21+
22+
<!-- header -->
23+
<div class="header">
24+
<h1 class="title"><a href="/blog/">zoblog</a></h1>
25+
<span class="meta"> / notes to anyone who is interested</span>
26+
<span style="float:right;" class="metasmaller"><a href="https://zobkiw.github.io">zobkiw.github.io</a> / <a href="https://twitter.com/zobskewed">@zobskewed</a></span>
27+
</div>
28+
29+
<!-- content -->
30+
<span class="metasmaller">&laquo; <a href="/blog/">home</a></span>
31+
<br /><br />
32+
33+
<span class="metalarger">Welcome</span>
34+
<span class="metasmaller metalighter"> &nbsp;/&nbsp; 15 Apr 2014</span>
35+
<span class="metasmaller metalighter"> &nbsp;/&nbsp; notes and hello</span>
36+
37+
<div class="post">
38+
<p>Playing around with <a href="http://jekyllrb.com">Jekyll</a> to see where it takes me. With the occasional thing to say that requires more than 140 characters, I figured I would throw this together. So there you have it!</p>
39+
40+
<div class="highlight"><pre><code class="objective-c"><span class="k">-</span> <span class="p">(</span><span class="kt">BOOL</span><span class="p">)</span><span class="nf">headInClouds</span> <span class="p">{</span>
41+
<span class="k">return</span> <span class="nb">YES</span><span class="p">;</span>
42+
<span class="p">}</span>
43+
</code></pre></div>
44+
45+
</div>
46+
47+
<br />
48+
49+
<span class="metasmaller">&laquo; <a href="/blog/">home</a></span>
50+
51+
52+
<!-- hardcoded stuff -->
53+
54+
<!-- footer -->
55+
<div class="footer">
56+
<span class="meta"><a href="https://zobkiw.github.io">zobkiw.github.io</a> / <a href="https://twitter.com/zobskewed">@zobskewed</a></span>
57+
</div>
58+
</div>
59+
60+
</body>
61+
</html>

_site/assets/favicon.png

2.95 KB
Loading

0 commit comments

Comments
 (0)