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: f2f8b705d1d687e0fccc8537d93b2f0ab25983cc (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
[%- PROCESS 'constants.tt' -%]
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.1//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-2.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" version="XHTML+RDFa 1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/1999/xhtml http://www.w3.org/MarkUp/SCHEMA/xhtml-rdfa-2.xsd" lang="en" xml:lang="en" dir="ltr" xmlns:og="http://ogp.me/ns#">
<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 />
<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>