update theme
This commit is contained in:
parent
c6071fa10a
commit
d1f3ba60f5
@ -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";
|
||||||
@ -14,4 +14,4 @@ $font-icon-path: "/font/fontawesome-webfont";
|
|||||||
url('#{$font-icon-path}.svg#FontAwesomeRegular') format('svg');
|
url('#{$font-icon-path}.svg#FontAwesomeRegular') format('svg');
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
@ -4,4 +4,6 @@
|
|||||||
|
|
||||||
@import "base";
|
@import "base";
|
||||||
@import "parts";
|
@import "parts";
|
||||||
@import "plugins";
|
@import "plugins";
|
||||||
|
|
||||||
|
@import "custom/styles";
|
||||||
|
@ -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>
|
@ -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>
|
8
source/archives/index.html
Normal file
8
source/archives/index.html
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
layout: default
|
||||||
|
title: Blog Archives
|
||||||
|
---
|
||||||
|
|
||||||
|
{% for post in site.posts reverse %}
|
||||||
|
{% include archive_post.html %}
|
||||||
|
{% endfor %}
|
Loading…
Reference in New Issue
Block a user