summaryrefslogtreecommitdiff
path: root/mobile/tt-rss.php
diff options
context:
space:
mode:
Diffstat (limited to 'mobile/tt-rss.php')
-rw-r--r--mobile/tt-rss.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/mobile/tt-rss.php b/mobile/tt-rss.php
index deaff9730..e6943d634 100644
--- a/mobile/tt-rss.php
+++ b/mobile/tt-rss.php
@@ -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";
}