{% extends "base.html" %} {% set title = "Now" %} {% set stylelist = ["now.css"] %} {% block content %}

bunnyguy NOW!

{% for update in now %} {% if loop.index == 1 %}
{% else %}
{% endif %}

{{ update["date"] }}, {{ update["time"] }}

{% if loop.index != 1 %}
{% endif %}
    {% for listname, listitem in update["list"] %}
  • {{ listname }}: {{ listitem }}
  • {% endfor %}
{% for paragraph in update["paragraphs"] %}

{{ paragraph }}

{% endfor %} {% if loop.index == 1 %}
{% else %}{% endif %} {% endfor %}
{% endblock %}