summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-08-27 16:39:44 -0600
committerHombreLaser <sebastian-440@live.com>2023-08-27 16:39:44 -0600
commit42706e303bf3536b56c066f26dfe39501ebfadeb (patch)
tree2123e30a8e6f03ce5e809b7c66af94924631570f /index.html
parenta2a0a2d0e08cee9fb73ee506d9a55ee8ed4625f8 (diff)
Finishing touches
Diffstat (limited to 'index.html')
-rw-r--r--index.html32
1 files changed, 17 insertions, 15 deletions
diff --git a/index.html b/index.html
index 75fb080..ad4d006 100644
--- a/index.html
+++ b/index.html
@@ -2,23 +2,25 @@
layout: default
---
-{% for post in paginator.posts %}
-<div class="article">
- <div class="well">
- <h1><a href="{{ site.baseurl}}{{ post.url }}">{{ post.date | date: "%b %-d, %Y" }} - {{ post.title }}</a></h1>
- {% if site.comments and post.comments %}
- {% if site.disqus != '' %}
- <p class="author"><a href="{{ site.baseurl }}{{ post.url }}/#disqus_thread" data-disqus-identifier="{{ post.url | slugify }}">Comments</a></p>
- {% elsif site.isso != '' %}
- <p class="author"><a href="{{ site.baseurl }}{{ post.url }}{{ site.isso_suffix }}#isso-thread">Comments</a></p>
- {% endif %}
- {% endif %}
- <div class="content">
- {{ post.content }}
- </div>
+<div class="container container-left">
+ <div class="row">
+ <div class="col-md-9">
+ <div class="well">
+ <ul style="list-style:none">
+ {% for post in site.posts %}
+ <li>
+ <h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.date | date: "%b %-d, %Y" }} - {{ post.title }}</a></h2>
+ <div class="post-content">
+ {{ post.excerpt }}
+ </div>
+ </li>
+ {% endfor %}
+ </ul>
+ </ul>
+ </div>
</div>
+ </div>
</div>
-{% endfor %}
<div class="pagination">
{% if paginator.previous_page %}