diff --git a/rhodecode/templates/index_base.html b/rhodecode/templates/index_base.html --- a/rhodecode/templates/index_base.html +++ b/rhodecode/templates/index_base.html @@ -41,7 +41,11 @@ ${h.link_to(gr.name,url('repos_group_home',group_name=gr.group_name))} - ${gr.group_description} + %if c.visual.stylify_metatags: + ${h.desc_stylize(gr.group_description)} + %else: + ${gr.group_description} + %endif ## this is commented out since for multi nested repos can be HEAVY! ## in number of executed queries during traversing uncomment at will ##${gr.repositories_recursive_count} @@ -57,7 +61,7 @@
<%cnt=0%> - <%namespace name="dt" file="/_data_table/_dt_elements.html"/> + <%namespace name="dt" file="/data_table/_dt_elements.html"/> @@ -85,11 +89,15 @@ ##DESCRIPTION ##LAST CHANGE DATE ##LAST REVISION
+ %if c.visual.stylify_metatags: + ${h.urlify_text(h.desc_stylize(h.truncate(repo['description'],60)))} + %else: ${h.truncate(repo['description'],60)} + %endif - ${h.age(repo['last_change'])} + ${h.age(repo['last_change'])} @@ -119,11 +127,13 @@