{% extends "base.html" %} {% block head %} {% endblock %} {% block content %}

title: {{ title }}

{% if lecture_slides %}

lecture_slides: [ {% for slide in lecture_slides %} {{ slide }}{% if loop.nextitem %},{% endif %} {% endfor %} ]

{% endif %} {% if lecture_notes %}

lecture_notes: [ {% for note in lecture_notes %} {{ note }}{% if loop.nextitem %},{% endif %} {% endfor %} ]

{% endif %} {% if uuid %}

uuid: {{ uuid }} (permalink)

{% endif %} {% if published %}

published: {{ published }}

{% endif %}

tags: [ {% for tag in tags %} {{ tag }}{% if loop.nextitem %},{% endif %} {% endfor %} ]

{% if author is string %} written by: {{ author }} {% elif author is iterable %} written by: [ {% for auth in author %}{{ auth }}{% if loop.nextitem %}, {% endif %}{% endfor %} ] {% endif %}

syntax highlighting based on Pygments' default colors

page generated by gronk

{% if license %}
License
{{ license }}
{% endif %} {% block body_content %} {{ content|safe }} {% endblock %} {% endblock %}