Skip to content

Commit

Permalink
Y not?
Browse files Browse the repository at this point in the history
  • Loading branch information
moodler committed Mar 11, 2004
1 parent b10f6e7 commit b643af5
Show file tree
Hide file tree
Showing 7 changed files with 591 additions and 0 deletions.
18 changes: 18 additions & 0 deletions theme/formal_white/config.php
@@ -0,0 +1,18 @@
<?PHP // $Id$

$THEME->body = "#F7F6F1"; // Main page color
$THEME->cellheading = "#C6BDA8"; // Standard headings of big tables
$THEME->cellheading2 = "#849DBC"; // Highlight headings of tables
$THEME->cellcontent = "#FFFFFF"; // For areas with text
$THEME->cellcontent2 = "#C6BDA8"; // Alternate colour
$THEME->borders = "#C6BDA8"; // Table borders
$THEME->highlight = "#849DBC"; // Highlighted text (eg after a search)
$THEME->hidden = "#979EA8"; // To color things that are hidden
$THEME->autolink = "#849DBC"; // To color auto-generated links (eg glossary)

$THEME->custompix = false; // If true, then this theme must have a "pix"
// subdirectory that contains copies of all
// files from the moodle/pix directory
// See "cordoroyblue" for an up-to-date example.

?>
Binary file added theme/formal_white/favicon.ico
Binary file not shown.
9 changes: 9 additions & 0 deletions theme/formal_white/footer.html
@@ -0,0 +1,9 @@
<!-- START OF FOOTER -->
<HR SIZE=1 NOSHADE>
<table width="100%" border="0" cellpadding="5" cellspacing="0">
<tr>
<td align="center"><p class="logininfo"><?php echo $loggedinas ?> | <?php echo $homelink ?></p></td>
</tr>
</table>
</BODY>
</HTML>
62 changes: 62 additions & 0 deletions theme/formal_white/header.html
@@ -0,0 +1,62 @@
<html<?php echo $direction ?>>
<head>
<?php echo $meta ?>
<title><?php echo $title ?></title>
<meta name="keywords" content="moodle, <?php echo $title ?> " />
<link rel="stylesheet" type="text/css" href="<?php echo $styles ?>" />
<link rel="shortcut icon" href="<?php echo "$CFG->wwwroot/theme/$CFG->theme" ?>/favicon.ico" />
<?php include("$CFG->javascript"); ?>
</head>

<body<?php
if ($focus) {
echo " onload=setfocus()";
}
echo " bgcolor=\"$THEME->body\">";
?>

<?php if ($home) { // This is what gets printed on the home page only ?>

<table width="100%" cellpadding="10" cellspacing="0" border="0" class="headerhome">
<tr>
<td valign="top" class="headerhomemain">
<img border="0" src="<?php echo "$CFG->wwwroot/theme/$CFG->theme/logo.jpg" ?>">
</td>
<td align="right" valign="top" class="headerhomemenu"><?php echo $menu ?></td>
</tr>
</table>

<?php } else if ($heading) { // This is what gets printed on any other page with a heading ?>

<table width="100%" cellpadding="0" cellspacing="0" border="0" class="header">
<tr>
<td valign="top" class="headermain">
<img border="0" src="<?php echo "$CFG->wwwroot/theme/$CFG->theme/logo_small.jpg" ?>">
<td align="right" valign="top" class="headermenu"><?php echo $menu ?></td>
</tr>
</table>

<?php } ?>


<?php if ($navigation) { // This is the navigation table with breadcrumbs ?>

<table border="0" cellpadding="3" cellspacing="0" width="100%">
<tr>
<td bgcolor="<?php echo $THEME->cellheading?>" class="navbar">
<?php print_navigation("$navigation"); ?>
</td>
<td bgcolor="<?php echo $THEME->cellheading?>" class="navbar" align="right" width="20" valign="top"><?php
echo $button;
?></td>
</tr>
</table>
<img src="<?php echo $CFG->wwwroot?>/pix/spacer.gif" alt="" height="5" width="1" /><br />

<?php } else if ($heading) { // If no navigation, but a heading, then print a line ?>

<hr size="1" noshade="noshade" />

<?php } ?>

<!-- END OF HEADER -->
Binary file added theme/formal_white/logo.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added theme/formal_white/logo_small.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b643af5

Please sign in to comment.