summaryrefslogtreecommitdiff
path: root/_includes/themes
diff options
context:
space:
mode:
authorJade Dominguez <plusjade@gmail.com>2012-02-01 17:32:18 -0800
committerJade Dominguez <plusjade@gmail.com>2012-02-01 17:32:18 -0800
commit5b2cc52c18c7fb0b32adade682a019e8889b2c15 (patch)
tree02c72ec96626188a91be9b334744dd9cded5e91e /_includes/themes
parentfdfb9c4c6fda97f213320005abff731f79ef822b (diff)
Themes are tracked and installed via the packager.
Detach themes from core JB framework.
Diffstat (limited to '_includes/themes')
-rw-r--r--_includes/themes/mark-reid/default.html74
-rw-r--r--_includes/themes/mark-reid/page.html6
-rw-r--r--_includes/themes/mark-reid/post.html28
-rw-r--r--_includes/themes/mark-reid/settings.yml2
-rw-r--r--_includes/themes/the-minimum/default.html83
-rw-r--r--_includes/themes/the-minimum/page.html28
-rw-r--r--_includes/themes/the-minimum/post.html71
-rw-r--r--_includes/themes/the-minimum/settings.yml2
-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
12 files changed, 0 insertions, 376 deletions
diff --git a/_includes/themes/mark-reid/default.html b/_includes/themes/mark-reid/default.html
deleted file mode 100644
index 91cbf03..0000000
--- a/_includes/themes/mark-reid/default.html
+++ /dev/null
@@ -1,74 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-
-<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 }} &larr; {{ page.top }}</title>
- <meta name="author" content="{{ site.author.name }}" />
-
- <link rel="start" href="{{ HOME_PATH }}" />
-
- {% if page.keywords %}
- <meta name="keywords" content="{{ page.keywords }}">
- {% endif %}
-
- {% if page.feed %}
- <link rel="alternate" type="application/atom+xml" href="{{ page.feed }}" title="RSS feed" />
- {% endif %}
-
- <!-- 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" />
-
-</head>
-<body id="{{ page.section }}">
-<div id="site">
-
- <div id="header">
- <h1>
- <a href="{{ HOME_PATH }}" title="{{ site.title }}">{{ site.title }}</a>
- <span class="byline">&larr; <a href="{{ HOME_PATH }}">{{ site.author.name }}</a></span>
- </h1>
- <ul class="nav">
- <li><a class="home" href="{{ HOME_PATH }}">Home</a></li>
- <li><a href="/archive.html">Archive</a></li>
- <li><a href="/pages.html">Pages</a></li>
- <li><a href="/categories.html">Categories</a></li>
- <li><a href="/tags.html">Tags</a></li>
- </ul>
- </div>
-
- {{ content }}
-
- <div id="footer">
- <address>
- <span class="copyright">
- Content by <a href="/info/site.html">{{ site.author.name }}</a>. Design by
- <a href="http://mark.reid.name/">Mark Reid</a>
- <br/>
- (<a rel="licence" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Some rights reserved</a>)
- </span>
- <span class="engine">
- Powered by <a href="http://github.com/mojombo/jekyll/" title="A static, minimalist CMS">Jekyll</a>
- </span>
- </address>
- </div>
-
-</div>
-
-<!--[if IE 6]>
-<script type="text/javascript">
- /*Load jQuery if not already loaded*/ if(typeof jQuery == 'undefined'){ document.write("<script type=\"text/javascript\" src=\"http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js\"></"+"script>"); var __noconflict = true; }
- var IE6UPDATE_OPTIONS = {
- icons_path: "http://static.ie6update.com/hosted/ie6update/images/"
- }
-</script>
-<script type="text/javascript" src="http://static.ie6update.com/hosted/ie6update/ie6update.js"></script>
-<![endif]-->
-
- {% include JB/analytics %}
-</body>
-</html>
diff --git a/_includes/themes/mark-reid/page.html b/_includes/themes/mark-reid/page.html
deleted file mode 100644
index 05af78e..0000000
--- a/_includes/themes/mark-reid/page.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<div id="page">
-
-<h1 class="emphnext">{{ page.title }}</h1>
-{{ content }}
-
-</div><!-- End Page -->
diff --git a/_includes/themes/mark-reid/post.html b/_includes/themes/mark-reid/post.html
deleted file mode 100644
index 76cbaed..0000000
--- a/_includes/themes/mark-reid/post.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<div id="page">
-
- <h1 class="emphnext">{{ page.title }}</h1>
- <ul class="tag_box inline">
- {% assign tags_list = page.tags %}
- {% include JB/tags_list %}
- </ul>
-
- {{ content }}
-
- <address class="signature">
- <a class="author" href="{{ HOME_PATH }}">{{ site.author.name }}</a>
- <span class="date">{{ page.date | date_to_long_string }}</span>
- <span class="location">{{ page.location }}</span>
- </address>
-
- <div class="prev-next">
- {% if page.next %}
- <a href="{{ page.next.url }}" class="next" title="{{ page.next.title }}">Next Post &rarr;</a>
- {% endif %}
- {% if page.previous %}
- <a href="{{ page.previous.url }}" class="prev" title="{{ page.previous.title }}">&larr; Earlier Post</a>
- {% endif %}
- </div>
-
-</div><!-- End Page -->
-
-{% include JB/comments %}
diff --git a/_includes/themes/mark-reid/settings.yml b/_includes/themes/mark-reid/settings.yml
deleted file mode 100644
index 68ca3d8..0000000
--- a/_includes/themes/mark-reid/settings.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-theme :
- name : mark-reid \ No newline at end of file
diff --git a/_includes/themes/the-minimum/default.html b/_includes/themes/the-minimum/default.html
deleted file mode 100644
index 00d015f..0000000
--- a/_includes/themes/the-minimum/default.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<!DOCTYPE html>
-<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7 ie" lang="en"> <![endif]-->
-<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8 ie" lang="en"> <![endif]-->
-<!--[if IE 8]> <html class="no-js lt-ie9 ie" lang="en"> <![endif]-->
-<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
-<head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1">
- <title>{{ page.title }}</title>
- <meta name="author" content="{{ site.author.name }}">
- <link href='{{ ASSET_PATH }}/css/style.css' rel="stylesheet" media="all">
- <link href="http://feeds.feedburner.com/{{ site.author.feedbaname }}" rel="alternate" title="{{ page.title }}" type="application/atom+xml">
- <script src="http://cdnjs.cloudflare.com/ajax/libs/modernizr/2.0.6/modernizr.min.js"></script>
-</head>
-<body>
-
-<div id="page" class="hentry">
- <header class="the-header">
- <div class="unit-head">
- <div class="unit-inner unit-head-inner">
- <p class="logo"><a href="{{ HOME_PATH }}">{{ site.title }}</a></p>
- <nav class="nav-global">
- <ul>
- <li class="archive"><a href="/archive.html">archive</a></li>
- <li class="page"><a href="/pages.html">pages</a></li>
- <li class="category"><a href="/categories.html">categories</a></li>
- <li class="tag"><a href="/tags.html">tags</a></li>
- <li class="forkme"><iframe src="http://markdotto.github.com/github-buttons/github-btn.html?user=plusjade&repo=jekyll-bootstrap&type=fork&count=true"
- allowtransparency="true" frameborder="0" scrolling="0" width="95px" height="20px"></iframe></li>
- </ul>
- </nav>
- </div><!-- unit-inner -->
- </div><!-- unit-head -->
- </header>
- <div class="body" role="main">
- <div class="unit-body">
- <div class="unit-inner unit-body-inner">
- <div class="entry-content">
- {{ content }}
- </div>
- </div><!-- unit-inner -->
- </div><!-- unit-body -->
- </div><!-- body -->
- <footer class="the-footer">
- <div class="unit-foot">
- <div class="unit-inner unit-foot-inner">
- <div class="misc vcard">
- <h4>about</h4>
- <ul>
- <li class="contact"><address><span class="author fn n">{{ site.author.name }}</span> - <span class="fn email">{{ site.author.email }}</span></address></li>
- <li class="github"><a href="http://github.com/{{ site.author.github }}/" rel="me">github.com/{{ site.author.github }}</a></li>
- <li class="twitter"><a href="http://twitter.com/{{ site.author.twitter }}/" rel="me">twitter.com/{{ site.author.twitter }}</a></li>
- <li class="rss"><a href="http://feeds.feedburner.com/{{ site.author.feedname }}">Subscribe to RSS Feed</a></li>
- </ul>
- </div><!-- misc -->
- <p class="licence">
- Theme: <a href="http://layouts-the.me">the_minimum</a> based on <a href="http://jekyllbootstrap.com/">Jekyll-bootstrap</a>.<br>
- Powered by <a href="https://github.com/mojombo/jekyll">Jekyll</a>.
- </p>
- </div><!-- unit-foot-inner -->
- </div><!-- unit-foot -->
- </footer>
-</div><!-- page -->
-<script>
- (function(d, s) {
- var js, fjs = d.getElementsByTagName(s)[0], load = function(url, id) {
- if (d.getElementById(id)) {return;}
- js = d.createElement(s); js.src = url; js.id = id;
- fjs.parentNode.insertBefore(js, fjs);
- };
- load('//platform.twitter.com/widgets.js', 'tweetjs');
- // load('https://apis.google.com/js/plusone.js', 'gplus1js'); // Checkout http://j.mp/ApDgMr for usage html for this is <div class="g-plusone" data-size="medium"></div>
- // load('//connect.facebook.net/en_US/all.js#xfbml=1', 'fbjssdk'); // Checkout http://j.mp/wZw2xR for using open graph protorol html for this is <div class="fb-like" data-href="{{ page.url }}" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false" data-font="verdana"></div>
- }(document, 'script'));
-</script>
-<script>
-/*! A fix for the iOS orientationchange zoom bug.Script by @scottjehl, rebound by @wilto. MIT License.*/
-(function(j){var i=j.document;if(!i.querySelectorAll){return}var l=i.querySelectorAll("meta[name=viewport]")[0],a=l&&l.getAttribute("content"),h=a+", maximum-scale=1.0",d=a+", maximum-scale=10.0",g=true,c=j.orientation,k=0;if(!l){return}function f(){l.setAttribute("content",d);g=true}function b(){l.setAttribute("content",h);g=false}function e(m){c=Math.abs(j.orientation);k=Math.abs(m.gamma);if(k>8&&c===0){if(g){b()}}else{if(!g){f()}}}j.addEventListener("orientationchange",f,false);j.addEventListener("deviceorientation",e,false)})(this);
-</script>
-
- {% include JB/analytics %}
-</body>
-</html>
diff --git a/_includes/themes/the-minimum/page.html b/_includes/themes/the-minimum/page.html
deleted file mode 100644
index 7c92f28..0000000
--- a/_includes/themes/the-minimum/page.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<article class="unit-article layout-page">
- <div class="unit-inner unit-article-inner">
- <div class="content">
- <header>
- <div class="unit-head">
- <div class="unit-inner unit-head-inner">
- <h1 class="h2 entry-title">{{ page.title }}</h1>
- </div><!-- unit-inner -->
- </div><!-- unit-head -->
- </header>
-
- <div class="bd">
- <div class="entry-content">
- {{ content }}
- </div><!-- entry-content -->
- </div><!-- bd -->
-
- <footer class="unit-foot">
- <div class="unit-inner unit-foot-inner">
- <p class="gotop">
- <a href="#page">Back to Top</a>
- </p>
- </div>
- </footer>
-
- </div><!-- content -->
- </div><!-- unit-inner -->
-</article>
diff --git a/_includes/themes/the-minimum/post.html b/_includes/themes/the-minimum/post.html
deleted file mode 100644
index 4e6f11c..0000000
--- a/_includes/themes/the-minimum/post.html
+++ /dev/null
@@ -1,71 +0,0 @@
-<article class="unit-article layout-post">
- <div class="unit-inner unit-article-inner">
- <div class="content">
- <header>
- <div class="unit-head">
- <div class="unit-inner unit-head-inner">
- <h1 class="h2 entry-title">{{ page.title }}</h1>
- </div><!-- unit-inner -->
- </div><!-- unit-head -->
- </header>
-
- <div class="bd">
- <div class="entry-content">
- {{ content }}
- <div class="meta">
- <p class="date-publish">
- Published:
- <date class="date-pub" title="{{ page.date | date_to_xmlschema }}" datetime="{{ page.date | date_to_xmlschema }}" pubdate>
- <span class="month"><abbr>{{ page.date | date: '%B' }}</abbr></span>
- <span class="day">{{ page.date | date: '%d' }}</span>
- <span class="year">{{ page.date | date: '%Y' }}</span>
- </date>
- </p>
- <ul class="list-category list-linear">
- <li class="list-head">category: </li>
- {% assign categories_list = page.categories %}
- {% include JB/categories_list %}
- </ul>
- <ul class="list-tag list-linear">
- <li class="list-head">tags: </li>
- {% assign tags_list = page.tags %}
- {% include JB/tags_list %}
- </ul>
- </div><!-- meta -->
- </div><!-- entry-content -->
- <div class="misc-content">
- <div class="social">
- <ul class="list-linear">
- <li><div class="twitter-tweet"><a href="https://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="{{ site.author.twitter }}" data-lang="en">Tweet</a></div></li>
- <li><div class="twitter-follow"><a href="https://twitter.com/{{ site.author.twitter }}" class="twitter-follow-button" data-show-count="false" data-lang="en"></a></div></li>
- </ul>
- </div>
-
- {% include JB/comments %}
- </div><!-- misc-content -->
-
- </div><!-- bd -->
- <footer class="unit-foot">
- <div class="unit-inner unit-foot-inner">
- <nav class="pagination">
- <ul>
- {% if page.previous %}
- <li class="prev"><a class="internal" rel="prev" href="{{ page.previous.url }}" title="View {{ page.previous.title }}">&laquo; {{ page.previous.title }}</a></li>
- {% endif %}
- {% if page.previous and page.next %}
- <li class="pipe"> | </li>
- {% endif %}
- {% if page.next %}
- <li class="next"><a class="internal" rel="next" href="{{ page.next.url }}" title="View {{ page.next.title }}">{{ page.next.title }} &raquo;</a></li>
- {% endif %}
- </ul>
- </nav>
- <p class="gotop">
- <a href="#page">Back to Top</a>
- </p>
- </div>
- </footer>
-
- </div><!-- content -->
- </div><!-- unit-inner -->
-</article>
diff --git a/_includes/themes/the-minimum/settings.yml b/_includes/themes/the-minimum/settings.yml
deleted file mode 100644
index 2d4ce2c..0000000
--- a/_includes/themes/the-minimum/settings.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-theme :
- name : the-minimum \ No newline at end of file
diff --git a/_includes/themes/tom/default.html b/_includes/themes/tom/default.html
deleted file mode 100644
index 8e1d878..0000000
--- a/_includes/themes/tom/default.html
+++ /dev/null
@@ -1,58 +0,0 @@
-<!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/username" 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="/archive.html">Archive</a>
- <a class="extra" href="/pages.html">Pages</a>
- <a class="extra" href="/categories.html">Categories</a>
- <a class="extra" href="/tags.html">Tags</a>
- </div>
-
- {{ content }}
-
- <div class="footer">
- <div class="contact">
- <p>
- {{ site.author.name }}<br />
- {{ site.tagline }}<br />
- {{ site.author.email }}
- </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 />
- <a href="http://flickr.com/photos/username/">flickr.com/photos/username</a>
- </p>
- </div>
- <div class="rss">
- <a href="http://feeds.feedburner.com/username">
- <img src="/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
deleted file mode 100644
index 8c753b9..0000000
--- a/_includes/themes/tom/page.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<div id="post">
-{{ content }}
-</div>
diff --git a/_includes/themes/tom/post.html b/_includes/themes/tom/post.html
deleted file mode 100644
index 088407a..0000000
--- a/_includes/themes/tom/post.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<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
deleted file mode 100644
index 5c24099..0000000
--- a/_includes/themes/tom/settings.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-theme :
- name : tom \ No newline at end of file