blob: 685de14d44f58854909be6c6e98c1c961b6dfb60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{strip}
{if !empty($structureInfo.structure_path)}
<div class="structurebar">
{if $gBitSystem->isFeatureActive( 'wiki_book_show_path' )}
<div class="path">
{section loop=$structureInfo.structure_path name=ix}
{if $structureInfo.structure_path[ix].parent_id} » {/if}
<a href="index.php?content_id={$structureInfo.structure_path[ix].content_id}">
{if $structureInfo.structure_path[ix].page_alias}
{$structureInfo.structure_path[ix].page_alias|escape}
{else}
{$structureInfo.structure_path[ix].title|escape}
{/if}
</a>
{/section}
</div>
{/if}
{if $gBitSystem->isFeatureActive( 'wiki_book_show_navigation' )}
<div class="navigation">
<span class="left">
{if $structureInfo.prev && $structureInfo.prev.structure_id}
<a href="index.php?structure_id={$structureInfo.prev.structure_id}">
{if $wikibook_use_icons eq 'y'}
{booticon iname="fa-arrow-left" iexplain=Previous}
{else}
« {$structureInfo.prev.title|escape}
{/if}
</a>
{else} {/if}
</span>
<span class="right">
{if $structureInfo.next && $structureInfo.next.structure_id}
<a href="index.php?structure_id={$structureInfo.next.structure_id}">
{if $wikibook_use_icons eq 'y'}
{biticon ipackage="icons" iname="go-next" iexplain=Next}
{else}
{$structureInfo.next.title|escape} »
{/if}
</a>
{else} {/if}
</span>
</div><!-- end .navigation -->
{/if}
<div class="clear"></div>
</div><!-- end .structure -->
{/if} {* end structure *}
{/strip}
|