Transformed site to Bootstrap 4

See #11

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2017-12-24 20:08:36 +01:00
parent f6e0419292
commit 537b3a3a93
10 changed files with 150 additions and 139 deletions

View File

@ -2,22 +2,13 @@
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>
<ul class="post-list list-unstyled">
{% for post in site.posts %}
<li class="mb-4">
<span class="small text-muted">{{ post.date | date: "%b %-d, %Y" }}</span>
<p class="h4 post-title">
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</p>
</li>
{% endfor %}
</ul>