diff --git a/src/root/contextbar.tt b/src/root/contextbar.tt
deleted file mode 100644
index 352fc1e4..00000000
--- a/src/root/contextbar.tt
+++ /dev/null
@@ -1,40 +0,0 @@
-[% BLOCK makeLinkWrapped %]
-
- [% title %]
- [% content %]
-
-[% END %]
-
-[% BLOCK makeLink %]
-[% INCLUDE makeLinkWrapped content="" %]
-[% END %]
-
-[% BLOCK makeSubMenu %]
-
-[% END %]
-
-
-
-[% IF project %]
-[% WRAPPER makeSubMenu %]
- [% INCLUDE makeLink
- uri = c.uri_for(c.controller('Project').action_for('view'), [project.name])
- title = project.name %]
-
- [% IF jobset %]
- [% INCLUDE makeLink
- uri = c.uri_for(c.controller('Jobset').action_for('index'), [project.name, jobset.name])
- title = jobset.name %]
- [% END %]
-
- [% IF job %]
- [% INCLUDE makeLink
- uri = c.uri_for(c.controller('Job').action_for('overview'), [project.name, jobset.name, job.name])
- title = job.name %]
-
- [% END %]
-[% END %]
-[% END %]
-