summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/basicindex.tpl
blob: b3f0c4a4173ff9f0b10fee63a9c8c85e70e1b750 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{section name=letter loop=$letters}
	<a href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a>
{/section}

{section name=index loop=$index}
	<a name="{$index[index].letter}"></a>
	<a href="{$indexname}.html#top">top</a><br>
	<div>
		<h2>{$index[index].letter}</h2>
		<dl class="lettercontents">
			{section name=contents loop=$index[index].index}
				<dt>{$index[index].index[contents].name}</dt>
				<dd>{$index[index].index[contents].listing}</dd>
			{/section}
		</dl>
	</div>
{/section}