{% extends "base.html" %} {% block title %} {{section.title}} {% endblock title %} {% block head %} {{ super() }} {% if section.description %} {% else %} {% endif %} {# Handle listing blog posts nicely in search #} {% if section.extra.inject_blog_posts %} {% endif %} {% endblock head %} {% block content %} {{section.content | safe}} {# Blog posts #} {% if section.extra.inject_blog_posts %}
{% for page in paginator.pages %} {% if not page.extra.hidden %}

{{page.date | date(format="%b %d, %Y")}}

{{page.title}}

{% if page.extra.excerpt %}

{{page.extra.excerpt}}

{% endif %}


{% endif %} {% endfor %}
{% if paginator.previous %} PREV {% endif %} {% if paginator.previous and paginator.next %} {% endif %} {% if paginator.next %} NEXT {% endif %}
{% endif %} {# RFCs #} {% if section.extra.inject_rfcs %} {% endif %} {% endblock content %}