Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 836 Bytes

index.md

File metadata and controls

39 lines (33 loc) · 836 Bytes
title layout heading list_title
default
Cut the Cake

{% include mad2020a_demo.html %}


{%- if page.list_title -%}

{{ page.list_title }}

{%- endif -%}

{% assign posts = site.posts %} {% assign latest_post = posts[0] %} {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}

  • {{ latest_post.excerpt }}
  • {%- for post in posts offset:1 -%}
    <li>
      <h4>
        <a class="post-link" href="{{ post.url | relative_url }}">
          {{ post.title | escape }}
        </a>
      </h4>
    </li>
    {%- endfor -%}
    </ul>