This commit is contained in:
Elias Jansson
2024-10-17 21:25:10 +02:00
parent 3c22d881ae
commit 4d3f340602
83 changed files with 74828 additions and 2 deletions

View File

@@ -0,0 +1,127 @@
@{
ViewData["Title"] = "Home Page";
}
<div class="text-center">
<html>
<head>
<link rel="alternate" type="application/rss+xml" title="zcz RSS" href="/rss.xml">
<style type="text/css">
body {
scrollbar-face-color: #999999;
scrollbar-highlight-color: #999999;
scrollbar-shadow-color: #202020;
scrollbar-3dlight-color: ##666666;
scrollbar-arrow-color: #383838;
scrollbar-track-color: #202020;
scrollbar-darkshadow-color: #212121;
Background-position: 50% 0%;
background-Color: #1F2C3C;
}
.tab { border-collapse: collapse; }
.Main { background-image: url(/images/bg.gif); background-repeat: repeat-y; }
.Navi { background-image: url(/images/navi.gif); background-repeat: repeat-y; }
.footer { background-image: url(/images/footer.gif); background-repeat: repeat-y; }
</style>
</head>
<body link="#6165A3" vlink="#6F76CC" alink="#66ACFF">
<table border="0" width="800" align="Center">
<td>
<table cellpadding="0" cellspacing="0" border="0" align="Center" bordercolor="#111111">
<td valign="Top" width=799>
</td>
</table>
<table border="0" height="100%" cellpadding="0" width="100%" cellspacing="1" align="Center" bordercolor="#111111" class="Main">
<td valign="Top" width=100 height="120" class=Navi>
<?php include "navi.php"; ?>
</td>
<td valign="Top" rowspan="2"><br>
<?php
if (isset($page)) {
$pagetoshow = "$page.php";
if (file_exists($pagetoshow)) {
include "$pagetoshow";
} else {
include "error.php";
}
}
if (!isset($page)) { include "main.php"; }
?>
</td>
<tr>
<td valign="Top" width=100 class=Navi>
<?php // include "login.php"; ?>
</td>
</tr>
</table>
<table border="0" height="100%" cellpadding="10" width="100%" cellspacing="1" align="Center" bordercolor="#111111" class="footer">
<img src="/images/border.gif">
<td width="100%" valign="Center">
</td>
</table>
</td>
</table>
</body>
</html>
</div>