From 9fc786beca42f2990f70a9a2576a9e52e1fe8555 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Wed, 1 May 2019 19:31:24 +0200 Subject: [PATCH] Add a `Status Updates` overview page --- blog/content/status-update/_index.md | 4 ++-- blog/templates/status-update-section.html | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 blog/templates/status-update-section.html diff --git a/blog/content/status-update/_index.md b/blog/content/status-update/_index.md index 867327a1..af736302 100644 --- a/blog/content/status-update/_index.md +++ b/blog/content/status-update/_index.md @@ -1,6 +1,6 @@ +++ -title = "News" +title = "Status Updates" +template = "status-update-section.html" page_template = "status-update-page.html" sort_by = "date" -render = false +++ diff --git a/blog/templates/status-update-section.html b/blog/templates/status-update-section.html new file mode 100644 index 00000000..70e814a2 --- /dev/null +++ b/blog/templates/status-update-section.html @@ -0,0 +1,23 @@ +{% extends "second-edition/base.html" %} + +{% import "macros.html" as macros %} + +{% block title %}{{ section.title }} | {{ config.title }}{% endblock title %} + +{% block main %} + +

{{ section.title }}

+ +{% block introduction %} +

+ These posts give a semi-regular overview of the most important changes to the blog and the tools and libraries behind the scenes. +

+{% endblock introduction %} + +
+ +{% endblock main %}