{% extends "base.html" %}
{# additional stuff for the head #}
{% block headstuff %}
<style> .optional { color: gray; }</style>
{% endblock %}
{# replaces default content block #}
{% block content %}
<h1>Reading on {{title}}</h1>
<p>Please read the following before class on {{ classdate }}
<article>Lorem ipsum ...</article>
{% endblock %}
{# replaces default footer #}
{% block footer %}
© 2016 Scott D. Anderson and the CS 304 staff
{% endblock %}