adding MDL html structure

This commit is contained in:
Byron Corrales 2015-07-11 13:00:36 -06:00
parent 9e5f1c4863
commit c55d91da8f
7 changed files with 124 additions and 325 deletions

View file

@ -2,22 +2,26 @@
layout: default
---
<div class="home">
<div class="mdl-grid">
<h1 class="page-heading">Posts</h1>
<div class="mdl-cell mdl-cell--12-col">
<ul class="post-list">
{% for post in site.posts %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h1 class="page-heading">Posts</h1>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endfor %}
</ul>
<ul class="post-list">
{% for post in site.posts %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
<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>
</div>