You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.9 KiB
57 lines
1.9 KiB
--- |
|
layout: post |
|
title: "Blog" |
|
description: "A Clean Blog Theme by Start Bootstrap" |
|
header-img: "img/post-bg-01.jpg" |
|
--- |
|
<div class="container-fluid index"> |
|
<div class="row index all-posts"> |
|
|
|
<h1 class="header author-header">{{ site.author_name }}</h1> |
|
<h2 class="header" itemprop="headline">All posts</h2> |
|
<h2 class="header categories" itemprop="headline"><small>grouped by |
|
|
|
<div class="dropdown btn-group"> |
|
<button class="btn btn-categories dropdown-toggle btn-xs" type="button" data-toggle="dropdown">Years |
|
<span class="caret"></span> |
|
</button> |
|
<ul class="dropdown-menu"> |
|
<li><a href="{{ site.baseurl }}/posts-by-categories/">Categories</a></li> |
|
</ul> |
|
</div> |
|
|
|
</small></h2> |
|
|
|
{% for post in site.posts %} |
|
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %} |
|
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %} |
|
|
|
{% if forloop.first %} |
|
<div class="col-md-12 content-panel articles"> |
|
<h2 id="{{ this_year }}-ref">{{ this_year }}</h2> |
|
<ul style="list-style: none;"> |
|
{% endif %} |
|
|
|
<li> |
|
<hr> |
|
<a href="{{ post.url | prepend: site.baseurl }}"><img src="/{{ post.header-img | prepend: site.baseurl }}" class="img-responsive" alt="{{ post.title }}"></a> |
|
<h3><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h3> |
|
<small class="hidden-xs">{{ post.date | date: "%B %-d, %Y" }}</small> |
|
</li> |
|
{% if forloop.last %} |
|
</ul> |
|
</div> |
|
{% else %} |
|
{% if this_year != next_year %} |
|
</ul> |
|
</div> |
|
<div class="col-md-12 content-panel articles"> |
|
<h2 id="{{ next_year }}-ref">{{next_year}}</h2> |
|
<ul style="list-style: none;"> |
|
{% endif %} |
|
{% endif %} |
|
|
|
{% endfor %} |
|
</div> |
|
|
|
</div>
|
|
|