Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 590 Bytes

File metadata and controls

26 lines (22 loc) · 590 Bytes
layout title permalink
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 -%}