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-mono: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace;
$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 !default;
$font-icon: FontAwesome;
$font-icon-path: "/font/fontawesome-webfont";
@ -14,4 +14,4 @@ $font-icon-path: "/font/fontawesome-webfont";
url('#{$font-icon-path}.svg#FontAwesomeRegular') format('svg');
font-weight: normal;
font-style: normal;
}
}

View File

@ -4,4 +4,6 @@
@import "base";
@import "parts";
@import "plugins";
@import "plugins";
@import "custom/styles";

View File

@ -10,10 +10,10 @@
<article>
<h2 class="title"><a href="{{ root_url }}{{ post.url }}">{{post.title}}</a></h2>
<div class="meta">
<span class="date">{{ date | date: "%b %e" }}</span>
<span class="tags">{% include post/categories.html %}</span>
<div class="date">{{ date | date: "%b %e" }}</div>
<div class="tags">{% include post/categories.html %}</div>
{% 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 %}
</div>
</article>

View File

@ -21,6 +21,6 @@
<div class="date">{% include post/date.html %}{{ time }}</div>
<div class="tags">{% include post/categories.html %}</div>
{% 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 %}
</div>

View File

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