Whitespace.

This commit is contained in:
Max Goodman
2012-08-05 14:43:32 -07:00
parent 9bb83901f3
commit af326aae15

View File

@@ -22,7 +22,6 @@
<!doctype html>
<%!
from r2.lib.template_helpers import static
from r2.models import Link, Comment, Subreddit
from r2.lib.tracking import UserInfo
@@ -32,7 +31,6 @@
xml:lang="${c.lang}" ${c.lang_rtl and unsafe('dir="rtl"') or ''}>
<head>
<title>${self.Title()}</title>
<meta name="keywords" content="${self.keywords()}" />
<meta name="title" content="${self.Title()}" />
<meta name="description" content="${getattr(thing, 'short_description', None) or g.short_description}" />
@@ -43,7 +41,7 @@
${self.stylesheet()}
${self.javascript()}
${js_setup()}
##things here may depend on globals, or included js, so we run them last
<script type="text/javascript">
${self.javascript_run()}
@@ -54,12 +52,10 @@
${self.head()}
</head>
${self.bodyHTML()}
</html>
<%def name="bodyHTML()">
</%def>