summaryrefslogblamecommitdiff
path: root/index.html
blob: eb3b799e023bd02663c268b9f6c4c930ec4b79d0 (plain) (tree)
1
2
3
4
5
6
7
8
9
   
               
                     
   
 
                                                                      
 
                                             
 

                                                                
 






                                                              
 


                                                                      
                                                                                                                       





                         
---
layout: default
title: lumberjaph.net
---

<center><h1><a href="{{ root_url }}/">lumberjaph.net</a></h1></center>

{% for post in site.posts reverse limit:10 %}

  {% capture date %}{{ post.date }}{% endcapture %}
  {% capture this_year %}{{ date | date: "%Y" }}{% endcapture %}

  {% unless year == this_year %}
    {% assign year = this_year %}
    {% unless forloop.first %}
      </section>
    {% endunless %}
    <section class="archives"><h2>{{ date | date: "%Y" }}</h2>
  {% endunless %}

  <article>
    <h3><a href="{{ root_url }}{{ post.url }}">{{post.title}}</a></h3>
    <div class="meta">
      // <span class="date">{{ date | date: "%b %e " }}</span> &#8208; <span class="oneliner">{{ post.summary }}</span>
    </div>
  </article>

{% endfor %}

{% include footer.html %}