Menu stuff
This commit is contained in:
@@ -1,127 +1,21 @@
|
||||
@{
|
||||
ViewData["Title"] = "Home Page";
|
||||
ViewData["Title"] = "Welcome to Aberwyn!";
|
||||
}
|
||||
|
||||
<div class="text-center">
|
||||
|
||||
<html>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<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>
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>@ViewData["Title"]</title>
|
||||
<link rel="stylesheet" href="~/css/site.css">
|
||||
</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>
|
||||
<div class="container">
|
||||
<h1>Welcome to Aberwyn!</h1>
|
||||
<p>Your home for managing all your budget and meal planning needs.</p>
|
||||
<p>We’re glad to have you here. Get started by exploring our features.</p>
|
||||
<a href="/Home/About" class="button">Learn More</a>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user