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



                                                                
 



                       
                              




                                                                           


                                                                   




                         
---
layout: default
---

{% assign post = site.posts.first %}

<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>

{% if post.previous.url %}
    <p id="bigleft"><a href="{{post.previous.url}}">&laquo;</a></p><br />
{% endif %}
{% if post.next.url %}
    <p id="bigright"><a href="{{post.next.url}}">&raquo;</a></p>
{% endif %}

<div id="entry">
  {{ post.content }}

  <p class="timestamp">
    {% if post.previous.url %}
      <a href="{{post.previous.url}}">&laquo; {{post.previous.title}}</a> |
    {% endif %}

    {{ post.date | date_to_string }}

    {% if post.next.url %}
      | <a href="{{post.next.url}}">{{post.next.title}} &raquo;</a>
    {% endif %}
  </p>

</div>

{% include footer.html %}