1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-03 18:19:14 +00:00

options to disable header/footer and to select more compact stylesheet (included as tt-rss_compact.css)

This commit is contained in:
Andrew Dolgov
2005-10-16 05:51:09 +01:00
parent fe2f197086
commit da5d0d09da
5 changed files with 416 additions and 4 deletions

View File

@@ -1,7 +1,26 @@
<? require_once "version.php" ?>
<? require_once "config.php" ?>
<html>
<head>
<title>Tiny Tiny RSS</title>
<link rel="stylesheet" href="tt-rss.css" type="text/css">
<? if (USE_COMPACT_STYLESHEET) { ?>
<link title="Compact Stylesheet"
rel="stylesheet" href="tt-rss_compact.css" type="text/css">
<link title="Normal Stylesheet" rel="alternate stylesheet"
type="text/css" href="tt-rss.css"/>
<? } else { ?>
<link title="Normal Stylesheet"
rel="stylesheet" href="tt-rss.css" type="text/css">
<link title="Compact Stylesheet" rel="alternate stylesheet"
type="text/css" href="tt-rss_compact.css"/>
<? } ?>
<script type="text/javascript" src="functions.js"></script>
<script type="text/javascript" src="tt-rss.js"></script>
<!--[if gte IE 5.5000]>
@@ -10,17 +29,16 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<? require_once "version.php" ?>
<? require_once "config.php" ?>
<body onload="init()">
<table width="100%" height="100%" cellspacing=0 cellpadding=0 class="main">
<? if (DISPLAY_HEADER) { ?>
<tr>
<td class="header" valign="middle" colspan="2">
<img src="images/ttrss_logo.png" alt="logo">
</td>
</tr>
<? } ?>
<tr>
<td class="mainToolbar" colspan="2">
@@ -118,6 +136,7 @@
id="content-frame" class="contentFrame"> </iframe>
</td>
</tr>
<? if (DISPLAY_FOOTER) { ?>
<tr>
<td colspan="2" class="footer">
<a href="http://bah.spb.su/~fox/tt-rss/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005 Andrew Dolgov
@@ -126,6 +145,7 @@
<? } ?>
</td>
</td>
<? } ?>
</table>