Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 502 Bytes

news.md

File metadata and controls

22 lines (17 loc) · 502 Bytes
layout title tagline
page
News
    {% for post in site.posts %}
  • {% assign date_format = site.cayman-blog.date_format | default: "%-d %b, %Y" %}
    <span class="post-meta">{{ post.date | date: date_format }}</span>
    
    <h2>
        <a class="post-link" href="{{ post.url | relative_url }}" title="{{ post.title }}">{{ post.title | escape }}</a>
    </h2>
    
    <span>{{ post.excerpt | strip_html | truncatewords: 70 }}</span>
    
    </li>
    

    {% endfor %}