Added themes directory, improved javascript load and minification.

This commit is contained in:
Brandon Mathis
2011-06-07 16:12:46 -04:00
parent 6cba214513
commit aa23061624
62 changed files with 3729 additions and 1 deletions

View File

@ -0,0 +1,19 @@
---
layout: default
---
<div id="content">
<div class="post">
<h1 class="post-title">{{ page.month | date_to_month }} {{ page.year }}</h1>
<p class="lead">Posts from {{ page.month | date_to_month }}, {{ page.year }}</p>
<ul>
{% for d in (1..31) reversed %}
{% if page.collated_posts[page.year][page.month][d] %}
{% for p in page.collated_posts[page.year][page.month][d] reversed %}
<li><a href='{{ p.url }}'>{{ p.title }}</a></li>
{% endfor %}
{% endif %}
{% endfor %}
</ul>
</div>
</div>

View File

@ -0,0 +1,25 @@
---
layout: default
---
<div id="content">
<div class="post">
<h1 class="post-title">{{ page.year }}</h1>
<p class="lead">Posts from the year {{ page.year }}</p>
{% for m in (1..12) reversed %}
{% if page.collated_posts[page.year][m] %}
<h3>{{ m | date_to_month }}</h3>
{% for d in (1..31) reversed %}
{% if page.collated_posts[page.year][m][d] %}
{% for p in page.collated_posts[page.year][m][d] reversed %}
<div>
<strong>{{ p.date | date: "%d" }}</strong>
<a href='{{ p.url }}'>{{ p.title }}</a>
</div>
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
</div>
</div>

View File

@ -0,0 +1,26 @@
{% include head.html %}
<body {% if page.body_id %} id="{{ page.body_id }}" {% endif %} {% if page.sidebar == 'none' %} class="no-sidebar" {% endif %}>
<header>{% include header.html %}</header>
<nav>{% include navigation.html %}</nav>
<div>
<div>
<div id="articles">{{ content }}</div>
{% unless page.sidebar == 'none' %}
<aside>{% include sidebar.html %}</aside>
{% endunless %}
</div>
</div>
<footer>{% include footer.html %}</footer>
{% if site.twitter_follow_button or site.twitter_tweet_button %}
<script type="text/javascript">
(function(){
var twitterWidgets = document.createElement('script');
twitterWidgets.type = 'text/javascript';
twitterWidgets.async = true;
twitterWidgets.src = 'http://platform.twitter.com/widgets.js';
document.getElementsByTagName('head')[0].appendChild(twitterWidgets);
})();
</script>
{% endif %}
</body>
</html>

View File

@ -0,0 +1,13 @@
---
layout: default
no_title_link: true
permalink: pretty
single: true
---
<article>
{% include article.html %}
{% if site.disqus_short_name %}
<div id="disqus_thread">{% include disqus_thread.html %}</div>
{% endif %}
</article>

View File

@ -0,0 +1,16 @@
---
layout: default
single: true
---
<article class="hentry">
{% include article.html %}
<footer>
<p>
<a href="http://twitter.com/share" class="twitter-share-button" data-url="{{ site.url }}{{ page.url }}" data-via="{{ site.twitter_user }}" data-counturl="{{ site.url }}{{ page.url }}" >Tweet</a>
</p>
</footer>
{% if site.disqus_short_name %}
<div id="disqus_thread">{% include disqus_thread.html %}</div>
{% endif %}
</article>