Skip to content

Latest commit

 

History

History
44 lines (42 loc) · 1.34 KB

File metadata and controls

44 lines (42 loc) · 1.34 KB
layout page
title Archive
description Browse all blog posts by date

Archive

All posts from Deepcomet AI, organized by year

{% assign sorted_posts = site.posts | sort: 'date' | reverse %} {% assign current_year = '' %} {% for post in sorted_posts %} {% assign post_year = post.date | date: '%Y' %} {% if post_year != current_year %} {% if current_year != '' %} {% endif %} {% assign current_year = post_year %}

{{ post_year }}

    {% endif %}
  • {{ post.date | date: "%b %d" }}
    {% if post.description %}

    {{ post.description }}

    {% else %}

    {{ post.excerpt | strip_html | truncatewords: 20 }}

    {% endif %}
  • {% endfor %} {% if current_year != '' %}
{% endif %}