summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_nav.tpl
blob: 89952301305765f137186958ddf35e07ffefa202 (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
<table class="tutorial-nav-box">
	<tr>
		<td style="width: 30%">
			{if $prev}
				<a href="{$prev}" class="nav-button">Previous</a>
			{else}
				<span class="nav-button-disabled">Previous</span>
			{/if}
		</td>
		<td style="text-align: center">
			{if $up}
				<a href="{$up}" class="nav-button">Up</a>
			{/if}
		</td>
		<td style="text-align: right; width: 30%">
			{if $next}
				<a href="{$next}" class="nav-button">Next</a>
			{else}
				<span class="nav-button-disabled">Next</span>
			{/if}
		</td>
	</tr>
	<tr>
		<td style="width: 30%">
			{if $prevtitle}
				<span class="detail">{$prevtitle}</span>
			{/if}
		</td>
		<td style="text-align: center">
			{if $uptitle}
				<span class="detail">{$uptitle}</span>
			{/if}
		</td>
		<td style="text-align: right; width: 30%">
			{if $nexttitle}
				<span class="detail">{$nexttitle}</span>
			{/if}
		</td>
	</tr>
</table>