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

html-body.tt « include « templates « web - github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb681c892002ba8ca34b6cbc23ea80ddf9dfd8f4 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[%- PROCESS 'constants.tt' -%]
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta http-equiv="Content-Style-Type" content="text/css" />
  <meta name="robots" content="index" />
  <meta name="revisit-after" content="[%- revisit -%]" />
  <meta name="description" content="[%- description | html -%]" />
  <meta property="og:title" content="WinDirStat" />
  <meta property="og:description" content="[%- long_desc | html -%]" />
  <meta property="og:image" content="images/wds_rich_preview.png" />
  <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
[%  FOREACH kw IN keywords %]
  <meta name="keywords" content="[%- kw.cont | html -%]" lang="[%- kw.lang | html -%]" />

[%  END %]
  <meta http-equiv="pragma" content="no-cache" />
  <style type="text/css">
  <!--

  [% INSERT styles.css | collapse | trim %]

  -->
  </style>
  <title>WinDirStat - [%- description | html -%]</title>
</head>
[%- FILTER replace('> <', '><') -%]
[%- FILTER collapse -%]
[%- PROCESS 'automenu.inc' -%]
[%- USE date(format = '%Y-%m-%d %H:%MZ') -%]
<body>
<p style="text-align:center;">
<img src="images/logo_wds_white.png" alt="WinDirStat logo with text" height="72" width="191" />
<span style="position:absolute; left:1.5em; z-index:200; font-weight:bold; color:white;">Latest version: [% currver %]</span>
</p>
<table id="frame" cellpadding="0" cellspacing="0" border="0" width="100%">
<colgroup>
 <col />
 <col width="100%" />
</colgroup>
<tr>
 <td id="heading" colspan="2" align="center" ><b>
  [%- description | ucfirst -%]
 </b></td>
</tr>
<tr>
 <td id="menu" valign="top">
  [%- FOREACH page IN pages.nsort('norder') -%]
    [%- IF uuid == page.uuid -%]
    <p class="selected">
    [%- ELSE -%]
    <p><a href="[% page.fname | uri %]">
    [%- END -%]
      [%- IF page.uuid == '51f50289-c61f-4cf7-ac07-fd236f442f39' -%]
      <img src="images/logo_50px.png" alt="Colored WinDirStat logo" height="50" width="50" />
      [%- ELSE -%]
      [%- page.title -%]
      [%- END -%]
    [%- IF uuid != page.uuid -%]
    </a>
    [%- END -%]
    </p>
  [%- END -%]
 </td>
 <td id="page" valign="top">
  [% content | indent('  ') %]
 </td>
</tr>
</table>
<p />
<table border="0" width="100%" >
<colgroup>
 <col width="50%" />
 <col width="50%" />
</colgroup>
<tr>
 <td align="left" valign="bottom">
  <a href="/stats"><img style="border:0;width:32px;height:32px" src="images/stats.png" alt="Project statistics" /></a>
 </td>
 <td align="right" valign="bottom">
  <a href="http://validator.w3.org/check?uri=referer"><img src="images/valid-xhtml10-gray.png" alt="Valid XHTML 1.0!" height="31" width="88" /></a>&nbsp;
  <a href="http://jigsaw.w3.org/css-validator/check/referer"><img style="border:0;width:88px;height:31px" src="images/vcss-gray.png" alt="Valid CSS!" /></a>
 </td>
</tr>
</table>
<p style="text-align:center; color:gray;" class="miniari">
WinDirStat is Open Source software. You can redistribute and/or modify it under the terms of the GNU Public License, version 2 (GPLv2).
<br />
Page last updated: [%- date.format(template.modtime) -%]
</p>
</body>
[%- END -%]
[%- END -%]
</html>