{% if g.user and g.user.person %} {% set person = g.user.person %} {% set person_zoobars = g.user.zoobars %} {% endif %} {# Pick a random title for the page. This is funny for about 3 seconds. #} {% set adjectives = ["Inquisitive", "Responsible", "Patriotic", "Trustworthy", "Sustainable", "Objective", "Disciplined", "Sensible", "Ethical", "Vigilant", "Principled", "Awesome"] %} {% set nouns = ["Thinking", "Policy", "Dialogue", "Learning", "Discourse", "Research", "Advocacy"] %} {% set adverbs = ["best", "brightest", "foremost", "leading", "proven", "loyal", "brave", "meritorious", "shrewd", "important", "skillful"] %} {% set pluralnouns = ["thinkers", "minds", "students", "soldiers", "advocates", "representatives", "researchers"] %} {% set concepts = ["21st-century", "next generation", "new world order", "United States", "counterinsurgency", "information superhighway"] %}

Zoobar Foundation for {{ adjectives|random }} {{ nouns|random }}

Supporting the {{ adverbs|random }} {{ pluralnouns|random }} of the {{ concepts|random }}

{% block main %}

{% for (name, page) in {"Home": "index", "Users": "users", "Transfer": "transfer"}.iteritems() %} {% if page == request.endpoint %} {{ name }} {% else %} {{ name }} {% endif %} {% if name != "Transfer" %} | {% endif %} {% endfor %}

{% block content %}{% endblock %}
{% block postscript %}{% endblock %} {% endblock %}