Deleting a couple of old files.

This commit is contained in:
Barry Clark 2014-02-11 09:12:35 -05:00
parent a0d3ee1679
commit 6c7ba1bc57
2 changed files with 0 additions and 33 deletions

View file

@ -1,27 +0,0 @@
---
layout: default
title: Blog
---
<h1>Blog</h1>
<ul class="posts">
{% for post in site.posts %}
<li>
<article class="post">
<header>
<time datetime="{{ post.date }}">{{ post.date | date: "%m.%d.%Y" }}</time>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
</header>
<div class="entry">
{{ post.content | truncatewords:85}}
<p class="read-more">
<a href="{{ post.url }}">Read more</a>
</p>
</div>
</article>
</li>
{% endfor %}
</ul>

View file

@ -1,6 +0,0 @@
// Define font-size and line height together
@mixin font-size-line-height($font-size, $line-height) {
font-size: $font-size;
line-height: $line-height;
}