~ubuntu-branches/ubuntu/breezy/moodle/breezy

« back to all changes in this revision

Viewing changes to theme/oceanblue/header.html_logo

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Mitchell
  • Date: 2005-10-13 02:00:59 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051013020059-y2qcyo41t7nqppcg
Tags: 1.5.2-1ubuntu1
* Resync with debian (security update)
* changed dependencys to php5
* changed apache dependency to apache2 
* References
  CAN-2005-2247

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<HTML<?php echo $direction?>>
2
 
<HEAD>
3
 
<TITLE><?php echo $title ?></TITLE>
4
 
<META NAME="keywords" CONTENT="Moodle, <?php echo $title ?> ">
5
 
<?php echo $meta ?>
6
 
<LINK REL="stylesheet" TYPE="text/css" HREF="<?php echo $styles ?>">
7
 
<LINK REL="SHORTCUT ICON" HREF="<?php echo $CFG->wwwroot?>/theme/oceanblue/favicon.ico">
8
 
<?php  include("$CFG->javascript"); ?>
9
 
</HEAD>
10
 
 
11
 
<BODY <?php  if ($focus) { echo "onLoad=setfocus()"; } echo " bgcolor=\"$THEME->body\">"; ?>
12
 
 
13
 
<?php  if ($home) {  // This is what gets printed on the home page only  ?>
14
 
 
15
 
     <TABLE WIDTH=100% CELLPADDING=10 CELLSPACING=0 BORDER=0>
16
 
       <TR>
17
 
         <TD VALIGN=TOP><A HREF="<?php echo $CFG->wwwroot?>" TARGET="<?php echo $CFG->framename?>"><IMG SRC="<?php echo $CFG->wwwroot?>/theme/oceanblue/logo.jpg" ALT="Moodle" BORDER="0"></A></TD>
18
 
         <TD ALIGN=RIGHT VALIGN=TOP><?php echo $menu ?></TD>
19
 
       </TR>
20
 
     </TABLE>
21
 
 
22
 
 
23
 
<?php  } else if ($heading) {  // This is what gets printed on any other page with a heading ?>
24
 
 
25
 
     <TABLE WIDTH=100% CELLPADDING=0 CELLSPACING=0 BORDER=0>
26
 
       <TR>
27
 
         <TD VALIGN=TOP><FONT SIZE=4><B><?php echo $heading?></B></FONT></TD>
28
 
         <TD ALIGN=RIGHT VALIGN=TOP><?php echo $menu ?></TD>
29
 
       </TR>
30
 
     </TABLE>
31
 
 
32
 
<?php  } ?>
33
 
 
34
 
 
35
 
<?php  if ($navigation) { // This is the navigation table with breadcrumbs  ?>
36
 
 
37
 
     <TABLE BORDER=0 CELLPADDING=3 CELLSPACING=0 WIDTH=100%>
38
 
       <TR>
39
 
         <TD BGCOLOR="<?php echo $THEME->cellheading?>" CLASS="navbar">
40
 
           <FONT SIZE=2><B><?php  print_navigation("$navigation"); ?></B></FONT>
41
 
         </TD>
42
 
         <TD BGCOLOR="<?php echo $THEME->cellheading?>" CLASS="navbar" ALIGN=RIGHT WIDTH=20 VALIGN=TOP><?php echo $button ?></TD>
43
 
       </TR>
44
 
     </TABLE>
45
 
     <IMG SRC="<?php echo $CFG->wwwroot?>/pix/spacer.gif" ALT="" HEIGHT=5 WIDTH=1><BR>
46
 
 
47
 
<?php  } else if ($heading) { // If no navigation, but a heading, then print a line  ?>
48
 
 
49
 
     <HR SIZE=1 NOSHADE>
50
 
 
51
 
<?php  } ?>
52
 
 
53
 
<!-- END OF HEADER -->