connections/header.tpl
author Dan
Tue, 02 Mar 2010 15:26:56 -0500
changeset 12 72dd1126dda2
parent 5 d8d8c482856f
permissions -rw-r--r--
Converted the entire top section to be CSS instead of image based for structure
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
     1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
     2
<html>
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
     3
  <head>
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
     4
    <title>{PAGE_NAME} &bull; {SITE_NAME}</title>
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
     5
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
     6
    <link rel="stylesheet" type="text/css" href="{SCRIPTPATH}/includes/clientside/css/enano-shared.css" />
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
     7
    <link id="mdgCss" rel="stylesheet" type="text/css" href="{SCRIPTPATH}/themes/{THEME_ID}/css/{STYLE_ID}.css" />
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
     8
    {JS_DYNAMIC_VARS}
5
d8d8c482856f Updated theme to Enano 1.1 specs
Dan
parents: 4
diff changeset
     9
    {JS_HEADER}
4
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    10
    {ADDITIONAL_HEADERS}
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    11
  </head>
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    12
  <body>
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    13
    
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    14
    <div id="rap">
12
72dd1126dda2 Converted the entire top section to be CSS instead of image based for structure
Dan
parents: 5
diff changeset
    15
      <div id="preheader"></div>
4
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    16
      <div id="header">
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    17
        <ul id="topnav">
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    18
          <!-- Put any additional navigation links here within list elements. -->
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    19
          <!-- Example: <li><a href="{SCRIPTPATH}/{ADMIN_SID_AUTO}">Home</a></li> -->
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    20
          <!-- You can insert a separator with: -->
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    21
          <!-- <li class="sep"></li> -->
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    22
          <li>
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    23
            <form action="{SCRIPTPATH}/index.php" method="get" onsubmit="if ( this.q.value == 'search' ) return false;">
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    24
              <input type="hidden" name="title" value="{NS_SPECIAL}Search" />
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    25
              <input type="hidden" name="auth" value="{ADMIN_SID_RAW}" />
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    26
              <input type="text" name="q" value="search" 
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    27
                onfocus="if ( this.value == 'search' ) this.value = '';"
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    28
                onblur=" if ( this.value == '' ) this.value = 'search';"
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    29
                />
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    30
              <input type="submit" value="Go" />
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    31
            </form>
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    32
          </li>
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    33
        </ul>
12
72dd1126dda2 Converted the entire top section to be CSS instead of image based for structure
Dan
parents: 5
diff changeset
    34
        <div id="banner">
72dd1126dda2 Converted the entire top section to be CSS instead of image based for structure
Dan
parents: 5
diff changeset
    35
          <h1><a href="{CONTENTPATH}" title="{SITE_NAME}">{SITE_NAME}</a></h1>
72dd1126dda2 Converted the entire top section to be CSS instead of image based for structure
Dan
parents: 5
diff changeset
    36
          <div id="desc">{PAGE_NAME}</div>
72dd1126dda2 Converted the entire top section to be CSS instead of image based for structure
Dan
parents: 5
diff changeset
    37
        </div>
4
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    38
      </div>
12
72dd1126dda2 Converted the entire top section to be CSS instead of image based for structure
Dan
parents: 5
diff changeset
    39
      <div id="postheader"></div>
4
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    40
      <div class="menu_nojs" id="pagebar_main">
5
d8d8c482856f Updated theme to Enano 1.1 specs
Dan
parents: 4
diff changeset
    41
        <div class="label">
d8d8c482856f Updated theme to Enano 1.1 specs
Dan
parents: 4
diff changeset
    42
          <!-- BEGIN stupid_mode -->
d8d8c482856f Updated theme to Enano 1.1 specs
Dan
parents: 4
diff changeset
    43
            Page tools
d8d8c482856f Updated theme to Enano 1.1 specs
Dan
parents: 4
diff changeset
    44
          <!-- BEGINELSE stupid_mode -->
d8d8c482856f Updated theme to Enano 1.1 specs
Dan
parents: 4
diff changeset
    45
            {lang:onpage_lbl_pagetools}
d8d8c482856f Updated theme to Enano 1.1 specs
Dan
parents: 4
diff changeset
    46
          <!-- END stupid_mode -->
d8d8c482856f Updated theme to Enano 1.1 specs
Dan
parents: 4
diff changeset
    47
        </div>
4
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    48
        {TOOLBAR}
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    49
        <ul>
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    50
          {TOOLBAR_EXTRAS}
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    51
        </ul>
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    52
        <span class="menuclear">&nbsp;</span>
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    53
      </div>
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    54
      <div id="main">
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    55
        <div id="content">
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    56
          <div class="post">
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    57
            <div class="post-info">
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    58
              <div style="float: right;">
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    59
                <image alt=" " src="{SCRIPTPATH}/images/spacer.gif" id="ajaxloadicon" />
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    60
              </div>
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    61
              <h2 class="post-title">{PAGE_NAME}</h2>
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    62
            </div>
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    63
            <div class="post-content">
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    64
            
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    65
            <div id="ajaxEditContainer">
ffba60211d61 Moved files around to make compliant with theme Hg structure
Dan
parents:
diff changeset
    66
            <!-- START CONTENT -->