<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" -->
<html lang="{g->language}">
<head>
{g->head}
{if empty($head.title)}
<title>{$theme.item.title|markup:strip|default:$theme.item.pathComponent}</title>
{/if}
<link rel="stylesheet" type="text/css" href="http://xiaofrog.com/style/style.css"/>
<style type="text/css">
.content {ldelim} width: {$theme.params.contentWidth}px; {rdelim}
{if !empty($theme.params.thumbnailSize)}
{assign var="thumbCellSize" value=$theme.params.thumbnailSize+30}
.gallery-thumb {ldelim} width: {$thumbCellSize}px; height: {$thumbCellSize}px; {rdelim}
.gallery-album {ldelim} height: {$thumbCellSize+30}px; {rdelim}
{/if}
</style>
</head>
{g->theme include="../../../../style/body-header.php" }
<div {g->mainDivAttributes}>
{*
* Some module views (eg slideshow) want the full screen. So for those, we don't draw
* a header, footer, navbar, etc. Those views are responsible for drawing everything.
*}
{if $theme.useFullScreen}
{include file="gallery:`$theme.moduleTemplate`" l10Domain=$theme.moduleL10Domain}
{elseif $theme.pageType == 'progressbar'}
<div class="header"></div>
<div class="content">
{g->theme include="progressbar.tpl"}
</div>
{else}
<div class="content">
<div class="breadcrumb">
{g->block type="core.BreadCrumb" skipRoot=true separator="/"}
</div>
{* Include the appropriate content type for the page we want to draw. *}
{if $theme.pageType == 'album'}
{g->theme include="album.tpl"}
{elseif $theme.pageType == 'photo'}
{g->theme include="photo.tpl"}
{elseif $theme.pageType == 'admin'}
{g->theme include="admin.tpl"}
{elseif $theme.pageType == 'module'}
{g->theme include="module.tpl"}
{/if}
</div>
{/if} {* end of full screen check *}
</div>
{g->trailer}
{g->debug}
{g->theme include="../../../../style/body-footer.php" }
</html>