summaryrefslogtreecommitdiff
path: root/src/defidx.html
blob: 12bea9f82079f5bbff1f1cc3dabe9f294143f0c7 (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
<!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&amp;O={% $(sortorder N) %}">Name</a>
     </th>
     <th class="indexcollastmod">
       <a href="?C=M&amp;O={% $(sortorder M) %}">Last modified</a>
     </th>
     <th class="indexcolsize">
       <a href="?C=S&amp;O={% $(sortorder S) %}">Size</a>
     </th>
     <th class="indexcoldesc">
       <a href="?C=D&amp;O={% $(sortorder D) %}">Description</a>
     </th>
   </tr>
   <tr class="indexbreakrow">
     <th colspan="5"><hr></th>
   </tr>
   {% if $(updir $URI) %}
   <tr class="odd">
     <td class="indexcolicon">
     {% if $(icon back) %}
        <img src="{% $(icon 'back') %}" alt="[PARENTDIR]">
     {% else %}
	[PARENTDIR]
     {% endif %}
     </td>
     <td class="indexcolname">
        <a href="{% $(updir $URI) %}">Parent Directory</a>     
     </td>
     <td class="indexcollastmod">&nbsp;</td>
     <td class="indexcolsize">  - </td>
     <td>&nbsp;</td>
   </tr>
   {% endif %}
   {% loop %}
   <tr class="{% $ROWCLASS %}">
     <td class="indexcolicon">
     {% if $(icon $MIMETYPE) %}
        <img src="{% $(icon $MIMETYPE) %}" alt="[{% $(alt $MIMETYPE) %}]">
     {% else %}
	[{% $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.