Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.54 KB

archive.md

File metadata and controls

45 lines (36 loc) · 1.54 KB
layout title publish permalink category
page
Archive
true
/archive/
astronomy

Welcome to the archives of my site. You can jump to a category's archive via the Table of Contents or just look through all the posts.

Table of Contents

{% assign sortedcats = site.categories | sort %} {% for catplus in sortedcats %} {% assign cat = {catplus | first} %}

  • [ {{cat | capitalize}} ](#{{cat | url_encode}}) {% endfor %}

All Posts

{% for post in site.posts %}

  • {{ post.date | date: "%Y-%m-%d" }} » [ {{ post.title }} ]({{ post.url }}) {% endfor %}

{% assign sortedcats = site.categories | sort %} {% for catplus in sortedcats %}

{% assign cat = {catplus | first} %}

{{cat | capitalize}}

{% for post in site.posts %} {% if post.category == {cat} %} * {{ post.date | date: "%Y-%m-%d" }} » [ {{ post.title }} ]({{ post.url }}) {% endif %} {% endfor %}

{% endfor %}