]> git.wh0rd.org - tt-rss.git/blob - tt-rss.php
MSIE5 compatibility workarounds (2)
[tt-rss.git] / tt-rss.php
1 <html>
2 <head>
3 <title>Tiny Tiny RSS</title>
4 <link rel="stylesheet" href="tt-rss.css" type="text/css">
5 <script type="text/javascript" src="functions.js"></script>
6 <script type="text/javascript" src="tt-rss.js"></script>
7 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
8 </head>
9
10 <? require_once "version.php" ?>
11 <? require_once "config.php" ?>
12
13 <body onload="init()">
14
15 <table width="100%" height="100%" cellspacing=0 cellpadding=0 class="main">
16 <tr>
17 <td class="header" valign="middle" colspan="2">
18 Tiny Tiny RSS
19 </td>
20 </tr>
21 <tr>
22 <td class="toolbar" colspan="2">
23 <table width="100%" cellspacing="0" cellpadding="0">
24 <td valign="middle"> <div id="notify">&nbsp;</div></td>
25 <td class="toolbar" valign="middle" align="right">
26 <a href="prefs.php" class="button">Preferences</a></td>
27 </tr></table>
28 </td>
29 </tr>
30 <tr>
31 <td valign="top" rowspan="2" id="feeds" class="feeds">
32 &nbsp;
33 </td>
34 <td id="headlines" class="headlines" valign="top">
35 Please select the feed.
36 </td>
37 </tr>
38 <td class="content" id="content" valign="top">
39 &nbsp;
40 </td>
41 </tr>
42 <tr>
43 <td colspan="2" class="notify">
44 <a href="">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005 Andrew Dolgov
45 <? if (WEB_DEMO_MODE) { ?>
46 <br>Running in demo mode, some functionality is disabled.
47 <? } ?>
48 </td>
49 </td>
50 </table>
51
52
53 </body>
54 </html>