summaryrefslogtreecommitdiff
path: root/tt-rss.php
blob: a43f567f655354570dc752c964a417640e490de3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<html>
<head>
	<title>Tiny Tiny RSS</title>
	<link rel="stylesheet" href="tt-rss.css" type="text/css">
	<script type="text/javascript" src="tt-rss.js"></script>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>

<body onload="init()">

<table width="100%" height="100%" cellspacing=0 cellpadding=0 class="main">
<tr>
	<td class="header" valign="middle" colspan="2">	
			Tiny Tiny RSS
	</td>
</tr>
<tr>
	<td class="toolbar" valign="middle" colspan="2">	
		<a class="button">Preferences</a>
		<a class="button" href="javascript:refresh()">Refresh</a>
	</td>
</tr>
<tr>
	<td valign="top" rowspan="2" id="feeds" class="feeds"> 
		Here be feeds
	</td>
	<td id="headlines" class="headlines" valign="top">
		Please select the feed.
	</td>
</tr>
	<td class="content" id="content" valign="top">
		&nbsp;
	</td>
</tr>
<tr>
	<td colspan="2" id="notify" class="notify">
		[Status Message Placeholder]
	</td>
</td>
</table>


</body>
</html>