1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

more mobile prototyping

This commit is contained in:
Andrew Dolgov
2006-03-27 04:44:43 +01:00
parent a9cb1f8344
commit 2f4685371a
3 changed files with 387 additions and 30 deletions

View File

@@ -19,14 +19,17 @@
<head>
<title>Tiny Tiny RSS - Mobile</title>
<link rel="stylesheet" type="text/css" href="mobile.css">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div id="heading">
<div id="opsel">
<form method="GET">
<select name="go">
<option>Feeds</option>
<option>Preferences</option>
<option disabled>Preferences</option>
<option disabled>--------------</option>
<option disabled>[user feed list]</option>
<option disabled>--------------</option>
@@ -36,12 +39,16 @@
</form>
</div>
</div>
<div id="content">
<?
$go = $_GET["go"];
if (!$go || $go == "Feeds") {
render_feeds_list($link);
} else if ($go == "vf") {
render_headlines($link);
} else {
print "Function not implemented";
}