[Openupload-svn-update] SF.net SVN: openupload:[361] trunk/templates
Status: Beta
Brought to you by:
tsdogs
|
From: <ts...@us...> - 2009-11-07 23:43:05
|
Revision: 361
http://openupload.svn.sourceforge.net/openupload/?rev=361&view=rev
Author: tsdogs
Date: 2009-11-07 23:42:52 +0000 (Sat, 07 Nov 2009)
Log Message:
-----------
re-add classic template
Added Paths:
-----------
trunk/templates/classic/
trunk/templates/classic/banned.tpl
trunk/templates/classic/index.html
trunk/templates/classic/index.tpl
trunk/templates/classic/locale/
trunk/templates/classic/modules/
trunk/templates/classic/plugins/
Added: trunk/templates/classic/banned.tpl
===================================================================
--- trunk/templates/classic/banned.tpl (rev 0)
+++ trunk/templates/classic/banned.tpl 2009-11-07 23:42:52 UTC (rev 361)
@@ -0,0 +1,3 @@
+{tr}Your IP has been blocked!{/tr}<br />
+{tr}You cannot use this site.{/tr}<br />
+{tr}If you think this is a misconfiguration please send an email to the site owner{/tr}
\ No newline at end of file
Added: trunk/templates/classic/index.html
===================================================================
--- trunk/templates/classic/index.html (rev 0)
+++ trunk/templates/classic/index.html 2009-11-07 23:42:52 UTC (rev 361)
@@ -0,0 +1,9 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html>
+<head>
+<title>NO ACCESS</title>
+<meta http-equiv="REFRESH" content="0;url=../"></HEAD>
+<BODY>
+No direct access is allowed on this folder.
+</BODY>
+</HTML>
\ No newline at end of file
Added: trunk/templates/classic/index.tpl
===================================================================
--- trunk/templates/classic/index.tpl (rev 0)
+++ trunk/templates/classic/index.tpl 2009-11-07 23:42:52 UTC (rev 361)
@@ -0,0 +1,51 @@
+<html>
+<head>
+<title>{$site.title} - {tr}{$page.title}{/tr}</title>
+<meta http-equiv="Content-Type" content="text/html; charset={$charset}">
+<link rel="SHORTCUT ICON" href="{tpl file=img/openupload.ico}">
+<link rel="stylesheet" type="text/css" href="{tpl file=/main.css}">
+<script language="javascript" type="text/javascript" src="{tpl file=/js/prototype.js}"></script>
+</head>
+<body>
+<!-- header -->
+<div id="header">
+<div id="logo"><img src="{tpl file=/img/openupload.jpg}" border="0"></div>
+<div id="langs">
+{if count($langs)>1}
+<ul>
+{foreach from=$langs item=l name=c}
+<li {if $smarty.foreach.c.last} style="border: 0px"{/if}><a href="{$script}?lang={$l.id}&action={$action}&step={$step}">{$l.name}</a></li>
+{/foreach}
+</ul>
+{/if}
+</div>
+<div id="userinfo">
+{$user.name}
+</div>
+<div id="title">{tr}{$page.title}{/tr}</div>
+<div id="menu">
+<ul>
+{foreach from=$menu item=m key=k name=c}
+<li {if $smarty.foreach.c.last} style="border: 0px"{/if}><a href="{$script}?action={$k}">{$m}</a></li>
+{/foreach}
+</ul>
+</div> <!-- menu end -->
+</div> <!-- header end -->
+<!-- menu -->
+<!-- content -->
+<div id="wrapper"><br />
+{foreach from=$user.messages item=m}
+<div id="message">{$m}</div>
+{/foreach}
+{foreach from=$user.errors item=e}
+<div id="error">{$e}</div>
+{/foreach}
+<div id="content" align="center">
+{$page.content}
+</div> <!-- content end -->
+</div> <!-- wrapper -->
+<br /> <br />
+<!-- footer -->
+<div id="footer">{$site.footer}</div>
+</body>
+</html>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|