##// END OF EJS Templates
made routes verification method based only on paths, since it's much faster and enough
made routes verification method based only on paths, since it's much faster and enough

File last commit:

r282:237470e6 default
r301:752675cd default
Show More
tags.html
19 lines | 439 B | text/html | HtmlLexer
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Tags')}
</%def>
<%def name="breadcrumbs()">
${h.link_to(u'Home',h.url('/'))}
/
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
/
${_('tags')}
</%def>
<%def name="page_nav()">
${self.menu('tags')}
</%def>
<%def name="main()">
<h2 class="no-link no-border">${_('Tags')}</h2>
<%include file='tags_data.html'/>
</%def>