30 lines
990 B
Smarty
30 lines
990 B
Smarty
{*
|
|
* $Revision: 15342 $
|
|
* If you want to customize this file, do not edit it directly since future upgrades
|
|
* may overwrite it. Instead, copy it into a new directory called "local" and edit that
|
|
* version. Gallery will look for that file first and use it if it exists.
|
|
*}
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html>
|
|
<head>
|
|
{* Let Gallery print out anything it wants to put into the <head> element *}
|
|
{g->head}
|
|
|
|
{* If Gallery doesn't provide a header, insert our own. *}
|
|
{if empty($head.title)}
|
|
<title>{g->text text="Error!"}</title>
|
|
{/if}
|
|
|
|
{* Include this theme's style sheet *}
|
|
<link rel="stylesheet" type="text/css" href="{g->theme url="theme.css"}"/>
|
|
</head>
|
|
<body class="gallery">
|
|
<div {g->mainDivAttributes}>
|
|
{include file=$theme.errorTemplate}
|
|
</div>
|
|
|
|
{* Put any debugging output here, if debugging is enabled *}
|
|
{g->debug}
|
|
</body>
|
|
</html>
|