Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tutorial_nav.tpl « templates « earthli « DOM « templates « frames « HTML « Converters « phpDocumentor « PhpDocumentor-1.3.2 « libs - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3cd7893d34d4d6ed4c0d55465bfd010434dddcc3 (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}"><img src="{$subdir}media/images/previous_button.png" alt="Previous"></a>
			{else}
				<span class="disabled"><img src="{$subdir}media/images/previous_button_disabled.png" alt="Previous"></span>
			{/if}
		</td>
		<td style="text-align: center">
			{if $up}
				<a href="{$up}"><img src="{$subdir}media/images/up_button.png" alt="Up"></a>
			{/if}
		</td>
		<td style="text-align: right; width: 30%">
			{if $next}
				<a href="{$next}"><img src="{$subdir}media/images/next_button.png" alt="Next"></a>
			{else}
				<span class="disabled"><img src="{$subdir}media/images/next_button_disabled.png" alt="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>