mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
Add a Status Updates overview page
This commit is contained in:
@@ -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
|
||||
+++
|
||||
|
||||
23
blog/templates/status-update-section.html
Normal file
23
blog/templates/status-update-section.html
Normal file
@@ -0,0 +1,23 @@
|
||||
{% extends "second-edition/base.html" %}
|
||||
|
||||
{% import "macros.html" as macros %}
|
||||
|
||||
{% block title %}{{ section.title }} | {{ config.title }}{% endblock title %}
|
||||
|
||||
{% block main %}
|
||||
|
||||
<h1>{{ section.title }}</h1>
|
||||
|
||||
{% block introduction %}
|
||||
<p>
|
||||
These posts give a semi-regular overview of the most important changes to the blog and the tools and libraries behind the scenes.
|
||||
</p>
|
||||
{% endblock introduction %}
|
||||
|
||||
<div><ul>
|
||||
{% for page in section.pages %}
|
||||
<li><b><a href="/{{ page.path | safe }}">{{ page.title }}</a></b></li>
|
||||
{% endfor %}
|
||||
</ul></div>
|
||||
|
||||
{% endblock main %}
|
||||
Reference in New Issue
Block a user