ttrss/tt-rss.php

67 lines
1.6 KiB
PHP
Raw Normal View History

2005-08-21 12:13:10 +02:00
<html>
<head>
<title>Tiny Tiny RSS</title>
<link rel="stylesheet" href="tt-rss.css" type="text/css">
2005-08-22 06:56:40 +02:00
<script type="text/javascript" src="functions.js"></script>
2005-08-21 12:13:10 +02:00
<script type="text/javascript" src="tt-rss.js"></script>
2005-08-21 15:46:43 +02:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
2005-08-21 12:13:10 +02:00
</head>
2005-08-25 15:35:59 +02:00
<? require_once "version.php" ?>
<? require_once "config.php" ?>
2005-08-21 12:13:10 +02:00
<body onload="init()">
2005-08-21 15:46:43 +02:00
<table width="100%" height="100%" cellspacing=0 cellpadding=0 class="main">
2005-08-21 12:13:10 +02:00
<tr>
2005-08-21 13:11:53 +02:00
<td class="header" valign="middle" colspan="2">
Tiny Tiny RSS
</td>
</tr>
<tr>
2005-08-22 06:56:40 +02:00
<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>
2005-08-21 12:13:10 +02:00
</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>
2005-08-21 12:13:10 +02:00
</td>
<td id="headlines" class="headlines" valign="top">
2005-08-21 17:01:18 +02:00
Please select the feed.
2005-08-21 12:13:10 +02:00
</td>
</tr>
<td class="content" id="content" valign="top">
<? if (ENABLE_CONTENT_IFRAME) { ?>
2005-09-05 12:01:36 +02:00
<iframe id="content-frame" class="contentFrame"> </iframe>
<? } ?>
2005-08-21 12:13:10 +02:00
</td>
</tr>
<tr>
2005-08-22 06:56:40 +02:00
<td colspan="2" class="notify">
2005-08-25 18:08:32 +02:00
<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.
<? } ?>
2005-08-21 12:13:10 +02:00
</td>
</td>
</table>
</body>
</html>