aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Barry Clark <barry@barryclark.co> 2014-02-11 09:12:35 -0500
committerGravatar Barry Clark <barry@barryclark.co> 2014-02-11 09:12:35 -0500
commit6c7ba1bc57f452a537548996823111b9a724c675 (patch)
tree2798e465bc93e0c5990077fd3e95230f76a7e1ec
parenta0d3ee167907e55b47def7fbfa76298a326ed8b4 (diff)
downloadkompetenzbolzen.github.io-6c7ba1bc57f452a537548996823111b9a724c675.tar.gz
Deleting a couple of old files.
-rw-r--r--blog.html27
-rw-r--r--scss/_mixins.scss6
2 files changed, 0 insertions, 33 deletions
diff --git a/blog.html b/blog.html
deleted file mode 100644
index 0a9f265..0000000
--- a/blog.html
+++ /dev/null
@@ -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>
diff --git a/scss/_mixins.scss b/scss/_mixins.scss
deleted file mode 100644
index d6da0e9..0000000
--- a/scss/_mixins.scss
+++ /dev/null
@@ -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;
-}