1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-29 12:20:51 +02:00
ttrss/tt-rss.php

55 lines
1.3 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" id="feeds" class="feeds">
2005-08-21 17:23:44 +02:00
&nbsp;
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">
2005-08-21 17:01:18 +02:00
&nbsp;
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-23 16:47:46 +02:00
<a href="">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>