summaryrefslogtreecommitdiff
path: root/_includes
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2012-04-26 14:09:07 +0200
committerChristoph Helma <helma@in-silico.ch>2012-04-26 14:09:07 +0200
commite7b956c14d9f104fb2681ed13db66c5c75a24f80 (patch)
tree86d485a8f2ed4160c60d129916225494c2aff0f2 /_includes
parent58258d7174f853cab7f8d5d3c99a179036fc546c (diff)
theme added
Diffstat (limited to '_includes')
-rw-r--r--_includes/themes/tom/default.html58
-rw-r--r--_includes/themes/tom/page.html3
-rw-r--r--_includes/themes/tom/post.html19
-rw-r--r--_includes/themes/tom/settings.yml2
4 files changed, 82 insertions, 0 deletions
diff --git a/_includes/themes/tom/default.html b/_includes/themes/tom/default.html
new file mode 100644
index 0000000..615389c
--- /dev/null
+++ b/_includes/themes/tom/default.html
@@ -0,0 +1,58 @@
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
+<head>
+ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
+ <title>{{ page.title }}</title>
+ <meta name="author" content="{{ site.author.name }}" />
+ <link href="http://feeds.feedburner.com/{{ site.author.feedburner }}" rel="alternate" title="your title" type="application/atom+xml" />
+
+ <!-- syntax highlighting CSS -->
+ <link rel="stylesheet" href="{{ ASSET_PATH }}/css/syntax.css" type="text/css" />
+
+ <!-- Homepage CSS -->
+ <link rel="stylesheet" href="{{ ASSET_PATH }}/css/screen.css" type="text/css" media="screen, projection" />
+
+ <!-- Typekit -->
+ <script type="text/javascript" src="http://use.typekit.com/jpd0pfm.js"></script>
+ <script type="text/javascript">try{Typekit.load();}catch(e){}</script>
+</head>
+<body>
+
+ <div class="site">
+ <div class="title">
+ <a href="{{ HOME_PATH }}">{{ site.title }}</a>
+
+ <a class="extra" href="{{ BASE_PATH }}{{ site.JB.archive_path }}">Archive</a>
+ <a class="extra" href="{{ BASE_PATH }}{{ site.JB.pages_path }}">Pages</a>
+ <a class="extra" href="{{ BASE_PATH }}{{ site.JB.categories_path }}">Categories</a>
+ <a class="extra" href="{{ BASE_PATH }}{{ site.JB.tags_path }}">Tags</a>
+ </div>
+
+ {{ content }}
+
+ <div class="footer">
+ <div class="contact">
+ <p>
+ {{ site.author.name }}<br />
+ {{ site.tagline }}<br />
+ <a href='mailto:{{ site.author.email }}'>{{ site.author.email }}</a>
+ </p>
+ </div>
+ <div class="contact">
+ <p>
+ <a href="http://github.com/{{ site.author.github }}/">github.com/{{ site.author.github }}</a><br />
+ <a href="http://twitter.com/{{ site.author.twitter }}/">twitter.com/{{ site.author.twitter }}</a><br />
+ </p>
+ </div>
+ <div class="rss">
+ <a href="http://feeds.feedburner.com/{{ site.author.feedburner }}">
+ <img src="{{ ASSET_PATH }}/images/rss.png" alt="Subscribe to RSS Feed" />
+ </a>
+ </div>
+ </div>
+ </div>
+ <a href="http://github.com/{{ site.author.github }}"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" /></a>
+
+ {% include JB/analytics %}
+</body>
+</html>
diff --git a/_includes/themes/tom/page.html b/_includes/themes/tom/page.html
new file mode 100644
index 0000000..8c753b9
--- /dev/null
+++ b/_includes/themes/tom/page.html
@@ -0,0 +1,3 @@
+<div id="post">
+{{ content }}
+</div>
diff --git a/_includes/themes/tom/post.html b/_includes/themes/tom/post.html
new file mode 100644
index 0000000..088407a
--- /dev/null
+++ b/_includes/themes/tom/post.html
@@ -0,0 +1,19 @@
+<div id="post">
+ <h1>{{ page.title }}</h1>
+ <p class="meta">
+ {{ page.date | date_to_long_string }}
+ {% if page.location %}{{ page.location }}{% endif %}
+ </p>
+ {{ content }}
+</div>
+
+<div id="related">
+ <h2>Related Posts</h2>
+ <ul class="posts">
+ {% for post in site.related_posts limit:3 %}
+ <li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
+ {% endfor %}
+ </ul>
+</div>
+
+{% include JB/comments %} \ No newline at end of file
diff --git a/_includes/themes/tom/settings.yml b/_includes/themes/tom/settings.yml
new file mode 100644
index 0000000..5c24099
--- /dev/null
+++ b/_includes/themes/tom/settings.yml
@@ -0,0 +1,2 @@
+theme :
+ name : tom \ No newline at end of file