Fix pervasive repo_dir -> repos_dir typo
[catagits/Gitalist.git] / root / tree.tt2
index b82a117..bc06ea5 100644 (file)
@@ -1,18 +1,15 @@
 [% INCLUDE 'nav/actions.tt2' object = commit %]
 
-<div class='commit-message'>
-[% short_cmt(commit.comment) | html %] ...
-</div>
+<div class='content'>
+  <div class='commit-message'>
+  [% short_cmt(commit.comment) | html %] ...
+  </div>
 
-[% IF path -%]
-<div>
- <a href='[% c.uri_for("tree", {hb=commit.sha1}) %]'>[% Project.name %]</a>
- [% fullpath = ''-%]
- [% FOREACH part IN path.split('/') -%]
- / <a href='[% c.uri_for("tree", {h=tree.sha1, hb=commit.sha1, f=fullpath _ part}) %]'>[% part %]</a>
- [% fullpath = fullpath _ part _ '/'; %]
- [% END -%]
-</div>
-[% END -%]
+  [%
+    IF path;
+      INCLUDE 'nav/path.tt2' filename = path, head = commit;
+    END;
 
-[% INCLUDE '_tree.tt2' %]
+    INCLUDE '_tree.tt2';
+  %]
+</div>