Skip to content

Commit

Permalink
Messages JS/CSS.
Browse files Browse the repository at this point in the history
  • Loading branch information
James Socol committed Sep 22, 2010
1 parent af78949 commit 1c37ddb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion templates/base.html
Expand Up @@ -6,6 +6,7 @@
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Mozilla Labs Gaming</title>
<link rel="stylesheet" type="text/css" media="all" href="{{ MEDIA_URL }}css/screen.css">
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/games.css"/>
</head>
<body class="{% block class %}{% endblock %}">
<div id="page">
Expand All @@ -27,7 +28,7 @@
</header>

{% if messages %}
<ul class="messages">
<ul id="messages">
{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
{% endfor %}
Expand All @@ -46,6 +47,8 @@
<a href="http://www.mozilla.com/en-US/about/legal.html">Legal Notices</a>
</footer>
</div>
<script src="{{ MEDIA_URL }}js/libs/jquery.min.js"></script>
<script src="{{ MEDIA_URL }}js/screen.js"></script>
</body>
</html>

0 comments on commit 1c37ddb

Please sign in to comment.