summaryrefslogtreecommitdiff
path: root/src/defidx.html
blob: 83935bd3a42b441f4cb48b1aac07a4c5c2b1519a (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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
 <head>
  <title>Index of {% $URI %}</title>
  {% if $INDEXCSS %}
  <link rel="stylesheet" href="{% $INDEXCSS %}" type="text/css">
  {% endif %}
 </head>
 <body>
  <h1 id="indextitle">Index of {% $URI %}</h1>
  <table id="indexlist">
   <tr class="indexhead">
     <th class="indexcolicon">
     {% if $(icon blank) %}
       <img src="{% $(icon blank) %}" alt="[ICO]">
     {% else %}
       [ICO]
     {% endif %}
     </th>
     <th class="indexcolname">
       <a href="?C=N;O=D">Name</a>
     </th>
     <th class="indexcollastmod">
       <a href="?C=M;O=A">Last modified</a>
     </th>
     <th class="indexcolsize">
       <a href="?C=S;O=A">Size</a>
     </th>
     <th class="indexcoldesc">
       <a href="?C=D;O=A">Description</a>
     </th>
   </tr>
   <tr class="indexbreakrow">
     <th colspan="5"><hr></th>
   </tr>
   <tr class="even">
     <td class="indexcolicon">
     {% if $(icon back) %}
        <img src="{% $(icon 'back') %}" alt="[PARENTDIR]">
     {% else %}
	[PARENTDIR]
     {% endif %}
     </td>
     <td class="indexcolname">
        <a href="/">Parent Directory</a>     
     </td>
     <td class="indexcollastmod">&nbsp;</td>
     <td class="indexcolsize">  - </td>
     <td>&nbsp;</td>
   </tr>
   {% loop %}
   <tr class="{% $ROWCLASS %}">
     <td class="indexcolicon">
     {% if $(icon $FILETYPE) %}
        <img src="{% $(icon $FILETYPE) %}" alt="[{% $(alt $FILETYPE) %}]">
     {% else %}
	[{% $(alt $FILETYPE) %}]
     {% endif %}
     </td>
     <td class="indexcolname">
        <a href="{% $FILENAME %}">{% $FILENAME %}</a>
     </td>
     <td class="indexcollastmod">{% $FILETIME %}</td>
     <td class="indexcolsize">{% $FILESIZE %}</td>
     <td>&nbsp;</td>
   </tr>
   {% endloop %}
   <tr class="indexbreakrow"><th colspan="5"><hr></th></tr>
  </table>
</body>
</html>

Return to:

Send suggestions and report system problems to the System administrator.