summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tags.tpl
blob: 9f965d884e70f196a0b927cd0c0074053c738df9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{if count($api_tags) > 0}
<strong>API Tags:</strong><br />
<table border="0" cellspacing="0" cellpadding="0">
{section name=tag loop=$api_tags}
  <tr>
    <td class="indent"><strong>{$api_tags[tag].keyword|capitalize}:</strong>&nbsp;&nbsp;</td><td>{$api_tags[tag].data}</td>
  </tr>
{/section}
</table>
<br />
{/if}

{if count($info_tags) > 0}
<strong>Information Tags:</strong><br />
<table border="0" cellspacing="0" cellpadding="0">
{section name=tag loop=$info_tags}
  <tr>
    <td class="indent"><strong>{$info_tags[tag].keyword|capitalize}:</strong>&nbsp;&nbsp;</td><td>{$info_tags[tag].data}</td>
  </tr>
{/section}
</table>
{/if}