mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
bc65a0d6cd
Simple redirect.tpl in template-common Simplification of function redirect() git-svn-id: http://piwigo.org/svn/trunk@1508 68402e56-0260-453c-a942-63ccdbb3a9ee
18 lines
545 B
Smarty
18 lines
545 B
Smarty
<!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>
|