{% autoescape on %}
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <link href='http://fonts.googleapis.com/css?family=Cardo&amp;subset=latin' rel='stylesheet' type='text/css' />
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>dr.botzo &mdash; Storycraft #{{ game.id }}</title>
    <link rel="stylesheet" href="/static/storycraft/page.css" type="text/css" />
    <!-- Required CSS -->
    <link type="text/css" rel="stylesheet" href="http://yui.yahooapis.com/2.8.2r1/build/progressbar/assets/skins/sam/progressbar.css">

    <!-- Dependency source file -->
    <script src = "http://yui.yahooapis.com/2.8.2r1/build/yahoo-dom-event/yahoo-dom-event.js" ></script>
    <script src = "http://yui.yahooapis.com/2.8.2r1/build/element/element-min.js" ></script>
    <!-- Optional dependency source file -->
    <script src="http://yui.yahooapis.com/2.8.2r1/build/animation/animation-min.js" type="text/javascript"></script>

    <!-- ProgressBar source file -->
    <script src = "http://yui.yahooapis.com/2.8.2r1/build/progressbar/progressbar-min.js" ></script>
  </head>
  <body>
    {% if messages %}
    <div id="messages">
      <ul class="messagelist">
        {% for message in messages %}
        <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
        {% endfor %}
      </ul>
    </div>
    {% endif %}
    <div id="container">
      <div id="mainpage">
        <div id="title">
          <h1>Storycraft #{{ game.id }}</h1>
        </div>
        <div id="gamesummary">
        {% include 'storycraft/tmpl_game_summary.html' %}
        </div>
        {% include 'storycraft/tmpl_game_story.html' %}
      </div>
    </div>
    {% include 'storycraft/tmpl_footer.html' %}
  </body>
</html>

<!--
  vi:tabstop=2:expandtab:autoindent
 -->
{% endautoescape %}