summaryrefslogtreecommitdiff
path: root/mobile/tt-rss.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-27 04:10:46 +0100
committerAndrew Dolgov <[email protected]>2006-03-27 04:10:46 +0100
commit8e3f7217a8e40bca23d7f4156b13c6afd6789582 (patch)
treed0c9bd3da8e6bdd3cc90779100cf44c6b22b6501 /mobile/tt-rss.php
parent0d3adafe15b21dde08c89fea8f016d31662fedf9 (diff)
mobile version work (3)
Diffstat (limited to 'mobile/tt-rss.php')
-rw-r--r--mobile/tt-rss.php22
1 files changed, 12 insertions, 10 deletions
diff --git a/mobile/tt-rss.php b/mobile/tt-rss.php
index 9b1453e22..deaff9730 100644
--- a/mobile/tt-rss.php
+++ b/mobile/tt-rss.php
@@ -22,34 +22,36 @@
</head>
<body>
-<table width='640' height='100%'>
-<tr><td class="heading">
- Your Feeds
-</td>
-<td align='right'>
+<div id="opsel">
<form method="GET">
<select name="go">
<option>Feeds</option>
<option>Preferences</option>
<option disabled>--------------</option>
+ <option disabled>[user feed list]</option>
<option disabled>--------------</option>
<option>Logout</option>
</select>
<input type="submit" value="Go">
</form>
-</td>
-</tr>
-<td class="content" height='100%' colspan='2' valign='top'>
+</div>
+
+<div id="content">
<?
$go = $_GET["go"];
if (!$go || $go == "Feeds") {
render_feeds_list($link);
+ } else {
+ print "Function not implemented";
}
?>
-</td></tr>
-</table>
+</div>
+
+<div id="footer">
+ <a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005-2006 Andrew Dolgov
+</div>
</body>
</html>