* Fixed a bug with previews of subpages having broken links to top-level
[ikiwiki.git] / templates / recentchanges.tmpl
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html>
4 <head>
5 <base href="<TMPL_VAR BASEURL>" />
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7 <title><TMPL_VAR TITLE></title>
8 <link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
9 </head>
10 <body>
11
12 <div class="header">
13 <span>
14 <TMPL_VAR INDEXLINK>/ <TMPL_VAR TITLE>
15 </span>
16 </div>
17
18 <div id="content">
19 <br />
20 <table border="1" frame="border" rules="groups">
21 <thead>
22         <tr class="changeheader">
23                 <th class="changeheader" align="left">user</th>
24                 <th class="changeheader" align="left">time</th>
25                 <th class="changeheader" align="left" colspan="2">changes</th>
26         </tr>
27 </thead>
28 <tbody>
29 <TMPL_LOOP NAME="CHANGELOG">
30         <!-- <TMPL_VAR NAME="REV"> -->
31         <tr class="changeinfo">
32                 <td class="changeinfo"><TMPL_VAR NAME="USER"></td>
33                 <td class="changetime"><TMPL_VAR NAME="WHEN"></td>
34                 <td class="changeinfo">
35                 <TMPL_LOOP NAME="PAGES">
36                         <TMPL_IF NAME="DIFFURL">
37                                 <a href="<TMPL_VAR NAME="DIFFURL">">
38                                 <img alt="diff" src="wikiicons/diff.png" style="border-style: none" />
39                                 </a>
40                                 <TMPL_VAR NAME="LINK">
41                         <TMPL_ELSE>
42                                 <TMPL_VAR NAME="LINK">
43                         </TMPL_IF>
44                 </TMPL_LOOP>
45                 </td>
46                 <td class="changeinfo"><TMPL_VAR NAME="COMMITTYPE"></td>
47         </tr>
48         <tr>
49                 <td class="changelog" colspan="4">
50                         <TMPL_LOOP NAME="MESSAGE">
51                                 <TMPL_IF NAME="LINE">
52                                         <TMPL_VAR NAME="LINE"><br />
53                                 </TMPL_IF>
54                         </TMPL_LOOP>
55                 </td>
56         </tr>
57 </TMPL_LOOP>
58 </tbody>
59 </table>
60 </div>
61
62 <!-- from <TMPL_VAR NAME=WIKINAME> -->
63
64 </body>
65 </html>