Realized I don't need flexbox. Position fixed sidebar

Refactoring

Cleaned up some styles
This commit is contained in:
Tetsuro
2015-01-27 14:00:57 -05:00
parent a8dc349f01
commit fe4253f872
5 changed files with 176 additions and 155 deletions
+6 -19
View File
@@ -2,22 +2,9 @@
layout: default
---
<div class="home">
<h1 class="page-heading">Posts</h1>
<ul class="post-list">
{% for post in site.posts %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endfor %}
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>
{% for post in site.posts %}
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
{{ post.content }}
{% endfor %}