Transformed site to Bootstrap 4
See #11 Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
29
index.html
29
index.html
@ -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>
|
||||
|
||||
Reference in New Issue
Block a user