aboutsummaryrefslogtreecommitdiffstats
path: root/template-common
diff options
context:
space:
mode:
authornikrou <nikrou@piwigo.org>2006-07-27 18:51:54 +0000
committernikrou <nikrou@piwigo.org>2006-07-27 18:51:54 +0000
commitbc65a0d6cd718ecbaa70ea699c6ec482a3e3af65 (patch)
treee9e799267e61c437b7ffda598c477e94bcdfb9e0 /template-common
parenteb6d08ead24523ef1bf237508e3f2798af96c3b9 (diff)
Feature 492: first step
Simple redirect.tpl in template-common Simplification of function redirect() git-svn-id: http://piwigo.org/svn/trunk@1508 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template-common')
-rw-r--r--template-common/redirect.tpl17
1 files changed, 17 insertions, 0 deletions
diff --git a/template-common/redirect.tpl b/template-common/redirect.tpl
new file mode 100644
index 000000000..43db09122
--- /dev/null
+++ b/template-common/redirect.tpl
@@ -0,0 +1,17 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+"http://www.w3.org/TR/html4/strict.dtd">
+<html lang="{LANG}" dir="{DIR}">
+ <head>
+ <title>{U_REDIRECT_MSG}</title>
+ <meta http-equiv="Content-Type" content="text/html; charset={CONTENT_ENCODING}">
+ <!-- BEGIN refresh -->
+ <meta http-equiv="refresh" content="{REFRESH_TIME};url={U_REFRESH}">
+ <!-- END refresh -->
+ </head>
+ <body>
+ <div id="the_page">
+ <p>{U_REDIRECT_MSG}</p>
+ <p><a href="{U_REFRESH}">{lang:click_to_redirect}</a></p>
+ </div>
+ </body>
+</html>