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.
{% assign sortedcats = site.categories | sort %} {% for catplus in sortedcats %} {% assign cat = {catplus | first} %}
- [ {{cat | capitalize}} ](#{{cat | url_encode}}) {% endfor %}
{% 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} %}
{% for post in site.posts %} {% if post.category == {cat} %} * {{ post.date | date: "%Y-%m-%d" }} » [ {{ post.title }} ]({{ post.url }}) {% endif %} {% endfor %}{% endfor %}