update theme

This commit is contained in:
Jörg Thalheim 2013-06-17 12:32:24 +02:00
parent c6071fa10a
commit d1f3ba60f5
5 changed files with 18 additions and 8 deletions

View File

@ -1,5 +1,5 @@
$font-default: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif; $font-default: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif !default;
$font-mono: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace; $font-mono: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace !default;
$font-icon: FontAwesome; $font-icon: FontAwesome;
$font-icon-path: "/font/fontawesome-webfont"; $font-icon-path: "/font/fontawesome-webfont";

View File

@ -5,3 +5,5 @@
@import "base"; @import "base";
@import "parts"; @import "parts";
@import "plugins"; @import "plugins";
@import "custom/styles";

View File

@ -10,10 +10,10 @@
<article> <article>
<h2 class="title"><a href="{{ root_url }}{{ post.url }}">{{post.title}}</a></h2> <h2 class="title"><a href="{{ root_url }}{{ post.url }}">{{post.title}}</a></h2>
<div class="meta"> <div class="meta">
<span class="date">{{ date | date: "%b %e" }}</span> <div class="date">{{ date | date: "%b %e" }}</div>
<span class="tags">{% include post/categories.html %}</span> <div class="tags">{% include post/categories.html %}</div>
{% if site.disqus_short_name and post.comments == true and site.disqus_show_comment_count == true %} {% if site.disqus_short_name and post.comments == true and site.disqus_show_comment_count == true %}
<span class="comments"><a href="{{ root_url }}{{ post.url }}#disqus_thread">Comments</a></span> <div class="comments"><a href="{{ root_url }}{{ post.url }}#disqus_thread">Comments</a></div>
{% endif %} {% endif %}
</div> </div>
</article> </article>

View File

@ -21,6 +21,6 @@
<div class="date">{% include post/date.html %}{{ time }}</div> <div class="date">{% include post/date.html %}{{ time }}</div>
<div class="tags">{% include post/categories.html %}</div> <div class="tags">{% include post/categories.html %}</div>
{% if site.disqus_short_name and site.disqus_show_comment_count == true %} {% if site.disqus_short_name and site.disqus_show_comment_count == true %}
<span class="comments"><a href="{{ root_url }}{{ post.url }}{{ page.url }}#disqus_thread">Comments</a></span> <div class="comments"><a href="{{ root_url }}{{ post.url }}{{ page.url }}#disqus_thread">Comments</a></div>
{% endif %} {% endif %}
</div> </div>

View File

@ -0,0 +1,8 @@
---
layout: default
title: Blog Archives
---
{% for post in site.posts reverse %}
{% include archive_post.html %}
{% endfor %}