1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/3.0/obsolete/web_client/application/views/g3_template.html.php

45 lines
1.6 KiB
PHP
Raw Normal View History

<?php defined('SYSPATH') OR die('No direct access allowed.'); ?>
<!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" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title><?= html::chars(__($title)) ?></title>
<?= html::stylesheet("css/reset-fonts-grids.css") ?>
<?= html::stylesheet("css/g3_client.css") ?>
<?= html::stylesheet("css/jquery-ui.css") ?>
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="<?= url::file("css/fix-ie.css") ?>"
media="screen,print,projection" />
<![endif]-->
<style type="text/css">
.copyright { font-size: 0.9em; text-transform: uppercase; color: #557d10; }
</style>
<?= html::script("js/jquery.js") ?>
<?= html::script("js/jquery.form.js") ?>
<?= html::script("js/jquery-ui.js") ?>
<?= html::script("lib/flowplayer.js") ?>
<?= html::script("js/g3_client.js") ?>
<script type="text/javascript">
$(document).ready(function () {
$("#wc-body").gallery3_client();
});
</script>
</head>
<body>
<div id="doc4" class="yui-t5">
<div id="wc-header" class="ui-helper-clearfix">
<div>&nbsp;</div>
</div>
<div id="wc-body">
<?= $content ?>
</div>
<div id="wc-footer" class="ui-helper-clearfix">
<p class="wc-copyright">
<?= __('Rendered in {execution_time} seconds, using {memory_usage} of memory')?><br />
Copyright ©20092010 Gallery Team
</p>
</div>
</div>
</body>
</html>