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

top_frame.tpl « templates « default « 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: a2a296012a3192f735e0d2019705fb0d2c4b0a29 (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
42
43
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml">
		<head>
			<!-- template designed by Marco Von Ballmoos -->
			<title>{$title}</title>
			<link rel="stylesheet" href="{$subdir}media/stylesheet.css" />
			<link rel="stylesheet" href="{$subdir}media/banner.css" />
			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
		</head>
		<body>
			<div class="banner">
				<div class="banner-title">{$package}</div>
				<div class="banner-menu">
	        <table cellpadding="0" cellspacing="0" style="width: 100%">
	          <tr>
              <td>
								{if count($ric) >= 1}
									{assign var="last_ric_name" value=""}
									{section name=ric loop=$ric}
										{if $last_ric_name != ""} | {/if}
										<a href="{$ric[ric].file}" target="right">{$ric[ric].name}</a>
										{assign var="last_ric_name" value=$ric[ric].name}
									{/section}
								{/if}
              </td>
              <td style="width: 2em">&nbsp;</td>
              <td style="text-align: right">
								{if count($packages) > 1}
									{assign var="last_package_name" value=""}
									{section name=p loop=$packages}
										{if $last_package_name != ""} | {/if}
										<a href="{$packages[p].link}" target="left_bottom">{$packages[p].title}</a>
										{assign var="last_package_name" value=$packages[p].title}
									{/section}
								{/if}
              </td>
						</tr>
          </table>
				</div>
			</div>
		</body>
	</html>