Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 584 Bytes

news.md

File metadata and controls

18 lines (16 loc) · 584 Bytes
layout title
default
News

News

<ul class="divide-y divide-gray-300">
    {% for post in site.posts %}
    <li class="py-4">
        <a href="{{ post.url }}" class="text-blue-500 text-2xl font-semibold hover:underline">{{ post.title }}</a>
        <div class="text-gray-600">{{ post.date | date: "%B %-d, %Y" }}</div>
        <p class="mt-2">{{ post.excerpt | strip_html | truncate: 100 }}</p>
    </li>
    {% endfor %}
</ul>