Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 575 Bytes

File metadata and controls

25 lines (21 loc) · 575 Bytes
layout title
default
Posts

Hi, I'm Kasim. Welcome to my site.

{%- if site.posts.size > 0 -%}

Posts

<p>

<ul>
  {%- for post in site.posts -%}
    <li>
      <a href="{{ post.url | relative_url }}">
	    {{ post.title | escape }}
      </a>
      {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
      <span class="post-meta">{{ post.date | date: date_format }}</span>
      </li>
  {%- endfor -%}
</ul>

{%- endif -%}