]> git.wh0rd.org - tt-rss.git/blob - mobile/index.php
mobile: add preferences
[tt-rss.git] / mobile / index.php
1 <?php
2 error_reporting(E_ERROR | E_WARNING | E_PARSE);
3
4 header('Content-Type: text/html; charset=utf-8');
5
6 define('MOBILE_VERSION', true);
7
8 require_once "../config.php";
9 require_once "functions.php";
10 require_once "../functions.php";
11
12 require_once "../sessions.php";
13
14 require_once "../version.php";
15 require_once "../db-prefs.php";
16
17 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
18
19 init_connection($link);
20
21 login_sequence($link, true);
22 ?>
23 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
24 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
25
26 <html xmlns="http://www.w3.org/1999/xhtml">
27 <head>
28 <title>Tiny Tiny RSS</title>
29 <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
30 <link rel="apple-touch-icon" href="../lib/iui/iui-logo-touch-icon.png" />
31 <meta name="apple-touch-fullscreen" content="YES" />
32 <style type="text/css" media="screen">@import "../lib/iui/iui.css";</style>
33 <script type="application/x-javascript" src="../lib/iui/iui.js"></script>
34 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
35 <script type="text/javascript" src="../lib/prototype.js"></script>
36 <script type="text/javascript" src="mobile.js"></script>
37 </head>
38
39 <style type="text/css">
40 img { max-width : 75%; }
41
42 li.oldItem {
43 color : gray;
44 }
45
46 #myBackButton {
47 display: none;
48 left: 6px;
49 right: auto;
50 padding: 0;
51 max-width: 55px;
52 border-width: 0 8px 0 14px;
53 -webkit-border-image: url(../lib/iui/backButton.png) 0 8 0 14;
54 }
55
56 img.tinyIcon {
57 max-width : 16px;
58 max-height : 16px;
59 margin-right : 10px;
60 vertical-align : middle;
61 }
62 </style>
63
64 <body>
65 <div class="toolbar">
66 <h1 id="pageTitle"></h1>
67 <a id="myBackButton" class="button" href="#"></a>
68 <a class="button" href="prefs.php">Preferences</a>
69 </div>
70
71 <?php
72 $use_cats = get_pref($link, 'ENABLE_FEED_CATS');
73
74 if ($use_cats) {
75 render_categories_list($link);
76 } else {
77 render_flat_feed_list($link);
78 }
79 ?>
80
81 </body>
82 </html>