]> git.wh0rd.org - tt-rss.git/blob - tt-rss.php
OPML Export button renamed to Export all
[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" class="feeds">
32
33 <div id="feeds">&nbsp;</div>
34
35 <p align="center">All feeds:
36
37 <a class="button"
38 href="javascript:scheduleFeedUpdate(true)">Update</a>
39
40 <a class="button"
41 href="javascript:catchupAllFeeds()">Mark as read</a></p>
42
43 </td>
44 <td id="headlines" class="headlines" valign="top">
45 Please select the feed.
46 </td>
47 </tr>
48 <td class="content" id="content" valign="top">
49 &nbsp;
50 </td>
51 </tr>
52 <tr>
53 <td colspan="2" class="notify">
54 <a href="http://bah.spb.su/~fox/tt-rss/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005 Andrew Dolgov
55 <? if (WEB_DEMO_MODE) { ?>
56 <br>Running in demo mode, some functionality is disabled.
57 <? } ?>
58 </td>
59 </td>
60 </table>
61
62
63 </body>
64 </html>