summaryrefslogtreecommitdiff
path: root/tt-rss.php
blob: 2abcea1a6601cc707d1141f82d5b2391b63193e9 (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
<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>
</head>

<body onload="init()">

<table width="100%" height="100%" cellspacing=0 cellpadding=0>
<tr>
	<td class="header" valign="middle" colspan="2">
		Tiny Tiny RSS
	</td>
</tr>
<tr>
	<td valign="top" rowspan="2" id="feeds" class="feeds"> 
		Here be feeds
	</td>
	<td id="headlines" class="headlines" valign="top">
			Here be headlines
	</td>
</tr>
	<td class="content" id="content" valign="top">
		Here be content	
	</td>
</tr>
<tr>
	<td colspan="2" id="notify" class="notify">
		[Status Message Placeholder]
	</td>
</td>
</table>


</body>
</html>