dr.botzo/ircbot/old-web/templates/storycraft/index.html

53 lines
1.9 KiB
HTML
Raw Normal View History

2011-02-20 13:45:39 -06:00
{% 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</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</h1>
</div>
<div id="gamelist">
{% for game in games %}
{% include 'storycraft/tmpl_game_summary.html' %}
2011-02-20 18:05:47 -06:00
{% empty %}
<p>No storycraft games. :(</p>
2011-02-20 18:05:47 -06:00
{% endfor %}
</div>
</div>
</div>
{% include 'storycraft/tmpl_footer.html' %}
</body>
</html>
<!--
vi:tabstop=2:expandtab:autoindent
-->
2011-02-20 13:45:39 -06:00
{% endautoescape %}