summaryrefslogtreecommitdiff
path: root/tt-rss.php
blob: 338b3efc8d614d7efbc0452c121cb4846b6dfb63 (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
<html>
<head>
	<title>Tiny Tiny RSS</title>
	<link rel="stylesheet" href="tt-rss.css" type="text/css">
	<script type="text/javascript" src="functions.js"></script>
	<script type="text/javascript" src="tt-rss.js"></script>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>

<? require_once "version.php" ?>
<? require_once "config.php" ?>

<body onload="init()">

<table width="100%" height="100%" cellspacing=0 cellpadding=0 class="main">
<tr>
	<td class="header" valign="middle" colspan="2">	
			Tiny Tiny RSS
	</td>
</tr>
<tr>
	<td class="toolbar" colspan="2">
		<table width="100%" cellspacing="0" cellpadding="0">
		<td valign="middle"> <div id="notify">&nbsp;</div></td>
		<td class="toolbar" valign="middle" align="right">
			<a href="prefs.php" class="button">Preferences</a></td>
		</tr></table>
	</td>
</tr>
<tr>
	<td valign="top" rowspan="2" class="feeds"> 
		
		<div id="feeds">&nbsp;</div>
	
		<p align="center">All feeds:
		
		<a class="button" 
				href="javascript:scheduleFeedUpdate(true)">Update</a>

		<a class="button" 
				href="javascript:catchupAllFeeds()">Mark as read</a></p>

	</td>
	<td id="headlines" class="headlines" valign="top">
		Please select the feed.
	</td>
</tr>
	<td class="content" id="content" valign="top">
		&nbsp;
	</td>
</tr>
<tr>
	<td colspan="2" class="notify">
		<a href="http://bah.spb.su/~fox/tt-rss/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005 Andrew Dolgov
		<? if (WEB_DEMO_MODE) { ?>
		<br>Running in demo mode, some functionality is disabled.
		<? } ?>
	</td>
</td>
</table>


</body>
</html>