diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2005-10-23 14:42:34 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2005-10-23 14:42:34 +0000 |
| commit | 8816bca0e9bece73f88bdae61b05d95d763817c9 (patch) | |
| tree | 0943900df4929efde6a73ee14a84517345a28578 /templates | |
| parent | 17676e1fd4e5dab3a4899404d83955cea0cd7112 (diff) | |
| download | themes-8816bca0e9bece73f88bdae61b05d95d763817c9.tar.gz themes-8816bca0e9bece73f88bdae61b05d95d763817c9.tar.bz2 themes-8816bca0e9bece73f88bdae61b05d95d763817c9.zip | |
merge recent changes into HEAD
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/popup_footer_inc.tpl | 5 | ||||
| -rw-r--r-- | templates/popup_header_inc.tpl | 45 |
2 files changed, 50 insertions, 0 deletions
diff --git a/templates/popup_footer_inc.tpl b/templates/popup_footer_inc.tpl new file mode 100644 index 0000000..d499c8f --- /dev/null +++ b/templates/popup_footer_inc.tpl @@ -0,0 +1,5 @@ + </div><!-- end .body -->
+ </div><!-- end .attbrowser -->
+ </div><!-- end #attbrowser -->
+</body>
+</html>
diff --git a/templates/popup_header_inc.tpl b/templates/popup_header_inc.tpl new file mode 100644 index 0000000..61affff --- /dev/null +++ b/templates/popup_header_inc.tpl @@ -0,0 +1,45 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+ <title>{tr}{$gPageTitle}{/tr}</title>
+
+ {if $smarty.request.site_style}
+ <link rel="stylesheet" title="{$style}" type="text/css" href="{$gBitSystem->getStyleCss($smarty.request.site_style)}" media="all" />
+ {/if}
+ {if $gBitSystem->mStyles.styleSheet}
+ <link rel="stylesheet" title="{$style}" type="text/css" href="{$gBitSystem->mStyles.styleSheet}" media="all" />
+ {/if}
+ {if $gBitSystem->mStyles.browserStyleSheet}
+ <link rel="stylesheet" title="{$style}" type="text/css" href="{$gBitSystem->mStyles.browserStyleSheet}" media="all" />
+ {/if}
+ {if $gBitSystem->mStyles.customStyleSheet}
+ <link rel="stylesheet" title="{$style}" type="text/css" href="{$gBitSystem->mStyles.custumStyleSheet}" media="all" />
+ {/if}
+ {foreach from=$gBitSystem->mStyles.altStyleSheets item=alt_path key=alt_name}
+ <link rel="alternate stylesheet" title="{$alt_name}" type="text/css" href="{$alt_path}" media="screen" />
+ {/foreach}
+
+ <script type="text/javascript" src="{$smarty.const.KERNEL_PKG_URL}bitweaver.js"></script>
+
+ {literal}
+ <script type="text/javascript"><!--
+ function returnAttachmentId(attachmentId) {
+ self.opener.document.getElementById("existing_attachment_id_input").value = attachmentId;
+ self.close();
+ }
+ --></script>
+ {/literal}
+
+ <!--[if gte IE 5.5000]>
+ <script type="text/javascript" src="{$smarty.const.THEMES_PKG_URL}js/pngfix.js"></script>
+ <![endif]-->
+
+</head>
+<body>
+ <div id="attbrowser">
+ <div class="display attbrowser">
+ <div class="header">
+ <h1>{$gPageTitle}</h1>
+ </div>
+
+ <div class="body">
|
