Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions content/archive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
+++
title = "Blog Archive"
template = "blog-archive.html"
extra.meta_description = """
The Matrix.org Foundation blog is where the Matrix.org Foundation and Community
post updates on their activity. Every Friday evening they publish This Week In
Matrix, a digest of the past week activity.
"""
+++
13 changes: 13 additions & 0 deletions templates/blog-archive.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{% extends "page.html" %}
{% block content %}
{% set section = get_section(path="blog/_index.md") %}
{% set pages = section.pages | sort(attribute="date") | reverse %}
<article class="content">
<h1>Blog Archive</h1>
<ul>
{% for page in pages %}
<li>{{ page.date | date }} — <a href="{{ page.path }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
</article>
{% endblock content %}