summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
authorBen Burwell <bburwell1@gmail.com>2014-04-30 18:58:50 -0400
committerBen Burwell <bburwell1@gmail.com>2014-04-30 18:58:50 -0400
commit042ebd011194592ec155181dc41976493a07e54a (patch)
tree4cddfc67dc21e5a080c4878153f16ddd12ca14e6 /_layouts
parentcdbd0a5ff3e815c01cbf4891d2bc0cd418720fab (diff)
Use Jekyll
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html44
-rw-r--r--_layouts/post.html9
2 files changed, 53 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..22e7e3f
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <title>{{ page.title }}</title>
+ <meta name="viewport" content="width=device-width">
+
+ <!-- syntax highlighting CSS -->
+ <link rel="stylesheet" href="/css/syntax.css">
+
+ <!-- Custom CSS -->
+ <link rel="stylesheet" href="/css/main.css">
+
+ </head>
+ <body>
+
+ <div class="site">
+ <div class="header">
+ <h1 class="title"><a href="/">{{ site.name }}</a></h1>
+ <a class="extra" href="/">home</a>
+ </div>
+
+ {{ content }}
+
+ <div class="footer">
+ <div class="contact">
+ <p>
+ Your Name<br />
+ What You Are<br />
+ you@example.com
+ </p>
+ </div>
+ <div class="contact">
+ <p>
+ <a href="https://github.com/yourusername">github.com/yourusername</a><br />
+ <a href="https://twitter.com/yourusername">twitter.com/yourusername</a><br />
+ </p>
+ </div>
+ </div>
+ </div>
+
+ </body>
+</html>
diff --git a/_layouts/post.html b/_layouts/post.html
new file mode 100644
index 0000000..04e3586
--- /dev/null
+++ b/_layouts/post.html
@@ -0,0 +1,9 @@
+---
+layout: default
+---
+<h2>{{ page.title }}</h2>
+<p class="meta">{{ page.date | date_to_string }}</p>
+
+<div class="post">
+{{ content }}
+</div>