Skip to content

Commit cd55c51

Browse files
committed
changed theme
0 parents  commit cd55c51

23 files changed

+583
-0
lines changed

Diff for: .DS_Store

6 KB
Binary file not shown.

Diff for: 404.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: layout
3+
title: "Not Found"
4+
---
5+
6+
<section class="content">
7+
<h1>Not Found</h1>
8+
9+
<p>Sorry! Couldn't find that page. Bummer.</p>
10+
</section>

Diff for: CNAME

Whitespace-only changes.

Diff for: LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License
2+
3+
Copyright (c) Zach Holman, http://zachholman.com
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

Diff for: _config.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
markdown: rdiscount
2+
pygments: true
3+
permalink: /posts/:title
4+
auto: true
5+
rdiscount:
6+
extensions: [smart]
7+
8+
name: Zach Holman
9+
url: http://zachholman.com
10+
description: A fantastic blog that is fantastic.
11+
twitter: holman
12+
github: holman
13+
gravatar_url: http://gravatar.com/avatar/6f63cde8b16b035280ca615f621a6c8c

Diff for: _layouts/layout.html

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>
6+
{% if page.title %}
7+
{{ page.title }} &ndash;
8+
{% endif %}
9+
{{ site.name }}
10+
</title>
11+
12+
<meta name="author" content="{{ site.name }}" />
13+
<meta name="description" content="{{ site.description }}" />
14+
15+
<link rel="alternate" type="application/rss+xml" href="/atom.xml" />
16+
17+
<link rel="stylesheet" href="/css/base.css" type="text/css" media="screen, projection" />
18+
<link rel="stylesheet" href="/css/pygments.css" type="text/css" />
19+
<link media="only screen and (max-device-width: 480px)" href="/css/iphone.css" type="text/css" rel="stylesheet" />
20+
<link media="only screen and (device-width: 768px)" href="/css/iphone.css" type="text/css" rel="stylesheet" />
21+
<link href='http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz' rel='stylesheet' type='text/css'>
22+
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
23+
24+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
25+
<script type="text/javascript" src="/js/application.js"></script>
26+
</head>
27+
28+
<body>
29+
<section class="sidebar">
30+
<a href="/">
31+
<img src="{{ site.gravatar_url }}?s=150" height="75" width="75" class="avatar" />
32+
</a>
33+
34+
<section class="name">
35+
<a href="/">
36+
<span id="fname">{{ site.name|split:' '|first }}</span>
37+
<span id="lname">{{ site.name|split:' '|last }}</span>
38+
</a>
39+
</section>
40+
41+
<section class="meta">
42+
<a href="https://github.com/{{ site.github }}" target="_blank"><img src="/images/github.png" /></a>
43+
<a href="https://twitter.com/{{ site.twitter }}" target="_blank"><img src="/images/twitter.png"></a>
44+
<a href="/atom.xml"><img src="/images/rss.png" /></a>
45+
</section>
46+
47+
<section class="sections">
48+
<ul>
49+
<li><a href="/about.html">about</a></li>
50+
<li><a href="/">posts</a></li>
51+
</ul>
52+
</section>
53+
</section>
54+
55+
{{ content }}
56+
</body>
57+
58+
</html>

Diff for: _layouts/post.html

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
layout: layout
3+
---
4+
5+
<section class="content">
6+
<h1>
7+
<a href="{{ page.url }}">{{ page.title }}</a>
8+
</h1>
9+
10+
<section class="byline">
11+
{{ page.date | date: "%B %e, %Y" }}
12+
</section>
13+
14+
{{ content }}
15+
16+
<!-- TODO: bio here -->
17+
<section class="meta">
18+
<h3>Discussion, links, and tweets</h3>
19+
<section class="copy">
20+
<a href="https://twitter.com/{{ site.twitter }}" target="_blank">
21+
<img src="{{ site.gravatar_url }}?s=142" height="50" width="50" />
22+
</a>
23+
24+
<p>
25+
I'm a developer at GitHub. <a href="https://twitter.com/{{ site.twitter }}" target="_blank">Follow me on Twitter</a>;
26+
you'll enjoy my tweets. I take care to carefully craft each one. Or at least aim to make
27+
you giggle. Or offended. One of those two&mdash; I haven't decided which yet.
28+
</p>
29+
30+
<a href="http://twitter.com/share" class="twitter-share-button" data-count="none" data-via="{{ site.twitter }}">Tweet</a>
31+
<a href="http://twitter.com/{{ site.twitter }}" class="twitter-follow-button" data-show-count="false">Follow @{{ site.twitter }}</a>
32+
<script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script>
33+
</section>
34+
</section>
35+
</section>

Diff for: _posts/2012-12-12-left.markdown

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: post
3+
title: Left
4+
category: posts
5+
---
6+
7+
Left is a clean, whitespace-happy layout for [Jekyll][jekyll].
8+
9+
This is designed to be an easy layout to modify for your own blog. It was
10+
extracted from [zachholman.com][zh], which means it was battle-hardened from
11+
years of posting serious blog posts about emoji and swear words.
12+
13+
You're actually reading an example post right now. See how cool it is? Oh, be
14+
quiet, you're making me blush.
15+
16+
---
17+
18+
You'll want to [get the code][left] and read the README to learn how to
19+
install and set up Left for your own purposes.
20+
21+
If you have any questions, follow and ping me on Twitter- I'm
22+
[@holman][twitter].
23+
24+
[jekyll]: https://github.com/mojombo/jekyll
25+
[zh]: http://zachholman.com
26+
[left]: https://github.com/holman/left#readme
27+
[twitter]: https://twitter.com/holman

Diff for: about.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: layout
3+
title: "About"
4+
---
5+
6+
<!-- You can edit this whole page, remove it, or use it as basis for any non-post pages you have. -->
7+
<section class="content">
8+
<h1>{{ site.name }}</h1>
9+
10+
<p>This would be an excellent time to update this page and talk about yourself a bit.</p>
11+
</section>

Diff for: apple-touch-icon.png

42.5 KB
Loading

Diff for: atom.xml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
layout: nil
3+
---
4+
<?xml version="1.0" encoding="utf-8"?>
5+
<feed xmlns="http://www.w3.org/2005/Atom">
6+
7+
<title>{{ site.name }}</title>
8+
<link href="{{ site.url }}/atom.xml" rel="self"/>
9+
<link href="{{ site.url }}/"/>
10+
<updated>{{ site.time | date_to_xmlschema }}</updated>
11+
<id>{{ site.url }}</id>
12+
<author>
13+
<name>{{ site.name }}</name>
14+
</author>
15+
16+
{% for post in site.posts %}
17+
<entry>
18+
<title>{{ post.title }}</title>
19+
<link href="{{ site.url }}{{ post.url }}"/>
20+
<updated>{{ post.date | date_to_xmlschema }}</updated>
21+
<id>{{ site.url }}{{ post.id }}</id>
22+
<content type="html">{{ post.content | xml_escape }}</content>
23+
</entry>
24+
{% endfor %}
25+
26+
</feed>

0 commit comments

Comments
 (0)