|
Revision 122, 1.5 KB
(checked in by dez, 7 years ago)
|
|
Adds editing of static content
Changes branding and footer backgrounds for IE<7 - fixes #12
|
| Line | |
|---|
| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
|---|
| 2 | |
|---|
| 3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{$language.code}"> |
|---|
| 4 | |
|---|
| 5 | <head> |
|---|
| 6 | <title>{$title} - SUCS</title> |
|---|
| 7 | <link rel="SHORTCUT ICON" href="/favicon.ico" /> |
|---|
| 8 | |
|---|
| 9 | <script type="text/javascript" src="/js/cb.js"></script> |
|---|
| 10 | |
|---|
| 11 | <link rel="stylesheet" type="text/css" href="/css/common.css" media="screen,print" /> |
|---|
| 12 | <link rel="stylesheet" type="text/css" href="/css/sucs.css" media="screen" /> |
|---|
| 13 | <link rel="stylesheet" type="text/css" href="/css/box.css" media="screen" /> |
|---|
| 14 | <link rel="stylesheet" type="text/css" href="/css/print.css" media="print" /> |
|---|
| 15 | |
|---|
| 16 | <meta name="author" content="Denis Walker" /> |
|---|
| 17 | <!-- <meta name="description" content="" /> |
|---|
| 18 | <meta name="keywords" content="" /> --> |
|---|
| 19 | {if $refresh} <meta http-equiv="REFRESH" content="{$refresh}" />{/if} |
|---|
| 20 | |
|---|
| 21 | {if $action=="edit"} |
|---|
| 22 | <script language="javascript" type="text/javascript" src="/js/tinymce/jscripts/tiny_mce/tiny_mce.js"></script> |
|---|
| 23 | <script language="javascript" type="text/javascript" src="/js/tiny_mce.js"></script> |
|---|
| 24 | {/if} |
|---|
| 25 | |
|---|
| 26 | <!--[if IE]> |
|---|
| 27 | <link rel="stylesheet" type="text/css" href="/css/ie.css" /> |
|---|
| 28 | <![endif]--> |
|---|
| 29 | |
|---|
| 30 | <!--[if lt IE 7]> |
|---|
| 31 | <link rel="stylesheet" type="text/css" href="/css/ielt7.css" media="screen" /> |
|---|
| 32 | <link rel="stylesheet" type="text/css" href="/css/boxie.css" media="screen" /> |
|---|
| 33 | |
|---|
| 34 | <script defer type="text/javascript" language="JavaScript" src="/js/pngfix.js"></script> |
|---|
| 35 | |
|---|
| 36 | <![endif]--> |
|---|
| 37 | |
|---|
| 38 | </head> |
|---|
| 39 | <body> |
|---|
| 40 | |
|---|
| 41 | {include file="branding.tpl"} |
|---|
| 42 | |
|---|
| 43 | |
|---|
| 44 | <div id="wrapper"> |
|---|
| 45 | <div id="content"> |
|---|