diff options
author | HombreLaser <sebastian-440@live.com> | 2023-08-27 16:39:44 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-08-27 16:39:44 -0600 |
commit | 42706e303bf3536b56c066f26dfe39501ebfadeb (patch) | |
tree | 2123e30a8e6f03ce5e809b7c66af94924631570f /index.html | |
parent | a2a0a2d0e08cee9fb73ee506d9a55ee8ed4625f8 (diff) |
Finishing touches
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 32 |
1 files changed, 17 insertions, 15 deletions
@@ -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 %} |