additional_plugins/serendipity_event_mobile_output/templates/iphone.app/index.tpl
2011-12-13 12:29:05 +01:00

61 lines
2.1 KiB
Smarty

{if $ajax!=1}
<?xml version="1.0" encoding="{$head_charset}"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{$head_title|@default:$blogTitle} {if $head_subtitle} - {$head_subtitle}{/if}</title>
<meta name="generator" content="Serendipity IPhone Output - http://c.seo-mobile.de/"/>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
<script type="application/x-javascript" src="{serendipity_getFile file="iui.js"}"></script>
<link rel="stylesheet" type="text/css" href="{$head_link_stylesheet}"/>
</head>
<body>
<!-- {$debug} -->
<div class="toolbar">
<h1 id="pageTitle">{$head_title|@default:$blogTitle}</h1>
<a id="backButton" class="button" href="#">{$CONST.BACK}</a>
<a href="{$serendipityBaseURL}"><img src="{serendipity_getFile file="img/s9y_banner.png"}" id="s9y_banner"/></a>
</div>
{/if}
{if !$is_single_entry}
<ul id="home" title="{$blogTitle}" selected="true">
{$CONTENT}
{if $footer_prev_page}
<li><a class="blue" href="{$footer_prev_page}" target="_ajax">{$CONST.PREVIOUS_PAGE}</a></li>
{/if}
{if $footer_next_page}
<li><a class="blue" href="{$footer_next_page}" target="_ajax">{$CONST.NEXT_PAGE}</a></li>
{/if}
{if $categories}
<li><a class="blue" href="#categories">{$CONST.CATEGORIES}</a></li>
{/if}
</ul>
{/if}
{if $is_single_entry}
<div title="{$head_title}" id="content">
{if $debug}
<div>{$debug}</div>
{/if}
{$CONTENT}
</div>
{/if}
{if $categories}
<ul title="{$CONST.CATEGORIES}" id="categories">
{foreach from=$categories item="plugin_category"}
<li><a href="{$plugin_category.categoryURL}" target="_ajax">{$plugin_category.category_name|escape}</a></li>
{/foreach}
</ul>
{/if}
{if $ajax!=1}
</body>
</html>
{/if}