Skip to content

Commit

Permalink
First steps with Jekyll.
Browse files Browse the repository at this point in the history
  • Loading branch information
misto committed Aug 13, 2011
1 parent 688df9b commit dd84b76
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 1 deletion.
1 change: 1 addition & 0 deletions _config.yml
@@ -0,0 +1 @@
pygments: true
12 changes: 12 additions & 0 deletions _layouts/default.html
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<title>{{ page.title }}</title>
</head>

<body>
<h1>{{ page.title }}</h1>

{{ content }}
</body>
</html>
13 changes: 13 additions & 0 deletions _site/index.html
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>Envy Labs</title>
</head>

<body>
<h1>Envy Labs</h1>

Welcome!

</body>
</html>
7 changes: 6 additions & 1 deletion index.html
@@ -1 +1,6 @@
My GitHub Page
---
layout: default
title: Write Yourself a Scheme in Scala
---

Welcome!

0 comments on commit dd84b76

Please sign in to comment.