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

basicindex.tpl « templates « HandS « templates « Smarty « 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: 031a998115b916ead0ec3664097d2185454c11d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{section name=letter loop=$letters}
	[ <a href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> ]
{/section}
<br /><br />
{section name=index loop=$index}
	<a name="{$index[index].letter}"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">{$index[index].letter}</div>
		<div style="float: right"><a href="#top">[Top]</a></div>
		<div style="clear: both"></div>
	</div>
	<div>
		<h2>{$index[index].letter}</h2>
		<dl>
			{section name=contents loop=$index[index].index}
				<dt><b>{$index[index].index[contents].name}</b></dt>
				<dd>{$index[index].index[contents].listing}</dd>
			{/section}
		</dl>
	</div>
{/section}