diff options
author | olf <olf@subsignal.org> | 2015-03-17 12:04:23 +0100 |
---|---|---|
committer | olf <olf@subsignal.org> | 2015-03-17 12:04:23 +0100 |
commit | 17995ecdc4e2d34ab12e1b173e215b335ee20343 (patch) | |
tree | 7b3d32fe4de0ed86df1fd0acacda5aaffdeab332 /template/pages/wiki_template | |
parent | 8f4a52b5be4dbf3adf8f7fbac513db0587eb3f4f (diff) |
wiki: parentlink now bootstrap breadcrumb
Diffstat (limited to 'template/pages/wiki_template')
-rw-r--r-- | template/pages/wiki_template/content.html | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/template/pages/wiki_template/content.html b/template/pages/wiki_template/content.html index e566d93..04a3a36 100644 --- a/template/pages/wiki_template/content.html +++ b/template/pages/wiki_template/content.html @@ -57,18 +57,16 @@ <TMPL_VAR TRAILS> <TMPL_IF HTML5><header class="header"><TMPL_ELSE><div class="header"></TMPL_IF> -<span> -<span class="parentlinks"> +<ul class="breadcrumb"> <TMPL_LOOP PARENTLINKS> -<a href="<TMPL_VAR URL>"><TMPL_VAR PAGE></a>|</TMPL_LOOP> -</span> -<span class="title"> +<li><a href="<TMPL_VAR URL>"><TMPL_VAR PAGE></a></li></TMPL_LOOP> +<li> <TMPL_VAR TITLE> <TMPL_IF ISTRANSLATION> (<TMPL_VAR PERCENTTRANSLATED>%) </TMPL_IF> -</span> -</span> +</li> +</ul> <TMPL_IF SEARCHFORM> <TMPL_VAR SEARCHFORM> </TMPL_IF> |