Skip to content

Commit

Permalink
Inverting head and body tags
Browse files Browse the repository at this point in the history
  • Loading branch information
sork committed Jul 6, 2010
1 parent fd913c2 commit 7a135d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/base.html
@@ -1,13 +1,13 @@
<!DOCTYPE html>
<html>
<body>
<head>
<title>{% block page_title %}Untitled{% endblock %} :: Firefox Sync on AppEngine</title>
<link rel="stylesheet" type="text/css" href="/css/main.css" />
</body>
<head>
</head>
<body>
<div id="content">
{% block content %}{% endblock %}
</div>
<script type="text/javascript" src="/js/main.js"></script>
</head>
</body>
</html>

0 comments on commit 7a135d1

Please sign in to comment.