Skip to content

Latest commit

 

History

History
122 lines (97 loc) · 4.21 KB

index.md

File metadata and controls

122 lines (97 loc) · 4.21 KB
layout title tagline
page
MalchioLog
My digital memory

{% include JB/setup %}

{% assign frontpost = site.posts[0] %}

{{ frontpost.title }} – {{ frontpost.date | date: "%Y/%m/%d" }}

In: {% if frontpost.categories.size > 0 %} {% for category in frontpost.categories %} {{ category }} {% if forloop.last != true %} – {% endif %} {% endfor %} {% else %} no category {% endif %} Tags : {% if frontpost.tags.size > 0 %} {% for tag in frontpost.tags %} {{ tag }} {% if forloop.last != true %} – {% endif %} {% endfor %} {% else %} no tags {% endif %}

{{ frontpost.content | strip_html | truncatewords:45}}
Read more...

{% for post in site.posts offset: 1 limit: 11 %}

<div class="span5">
  <h2><a href="{{ post.url }}">{{ post.title }}</a><small> – {{ post.date | date: "%Y/%m/%d" }}</small></h2>  
  <p>
    In:
    {% if post.categories.size > 0 %}
      {% for category in post.categories %} <a href="/categories/{{ category }}" rel="tooltip" title="View posts in category &quot;{{ category }}&quot;">{{ category }}</a>  {% if forloop.last != true %} – {% endif %} {% endfor %}
    {% else %}
      no category
    {% endif %}
    Tags :
    {% if post.tags.size > 0 %}
      {% for tag in post.tags %} <a href="/tags/{{ tag }}" rel="tooltip" title="View posts tagged with &quot;{{ tag }}&quot;">{{ tag }}</a>  {% if forloop.last != true %} – {% endif %} {% endfor %}
    {% else %}
      no tags
    {% endif %}
  </p>    
  <p>
    {{ post.content | strip_html | truncatewords:45}}<br>
    <a href="{{ post.url }}">Read more...</a>
    <a href="http://erjjones.github.com{{ post.url }}#disqus_thread" data-disqus-identifier="{{ post.url }}"></a>
  </p>

    
</div>

{% endfor %}