aboutsummaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/blob.html4
-rw-r--r--views/tree.html4
2 files changed, 6 insertions, 2 deletions
diff --git a/views/blob.html b/views/blob.html
index 9d0e9ff..6e493ab 100644
--- a/views/blob.html
+++ b/views/blob.html
@@ -29,7 +29,9 @@
<a href="{{relroot}}">[{{repo.branch}}]</a> /
% base = smstr(relroot)
% for c in dirname.split('/'):
-% if not c.raw: continue
+% if not c.raw:
+% continue
+% end
<a href="{{base.url}}{{c.url}}/">{{c.unicode}}</a> /
% base += c + '/'
% end
diff --git a/views/tree.html b/views/tree.html
index 9682065..aad7402 100644
--- a/views/tree.html
+++ b/views/tree.html
@@ -27,7 +27,9 @@
<a href="{{relroot}}">[{{repo.branch}}]</a> /
% base = smstr(relroot)
% for c in dirname.split('/'):
-% if not c.raw: continue
+% if not c.raw:
+% continue
+% end
<a href="{{base.url}}{{c.url}}/">{{c.unicode}}</a> /
% base += c + '/'
% end