f41c5dd1e5
modified: view/theme/smoothly/default.php modified: view/theme/smoothly/style.css modified: view/theme/smoothly/templates/nav.tpl modified: view/theme/smoothly/theme.php
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<!DOCTYPE html >
|
|
<html>
|
|
<head>
|
|
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
|
|
<script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>
|
|
<script type="text/javascript">
|
|
function ScrollToBottom(){
|
|
window.scrollTo(0,document.body.scrollHeight);
|
|
}
|
|
</script>
|
|
<?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<?php if(x($page, 'header')) echo $page['header']; ?>
|
|
</header>
|
|
|
|
<?php if(x($page,'nav')) echo $page['nav']; ?>
|
|
|
|
<aside><?php if(x($page,'aside')) echo $page['aside']; ?></aside>
|
|
|
|
<section><?php if(x($page,'content')) echo $page['content']; ?>
|
|
<div id="page-footer"></div>
|
|
</section>
|
|
|
|
<right_aside><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></right_aside>
|
|
|
|
<footer id="footer">
|
|
<?php if(x($page, 'footer')) echo $page['footer']; ?>
|
|
<div id="scrollup" >
|
|
<a href="javascript:scrollTo(0,0)"><img src="view/theme/smoothly/images/totop.png" alt="to top" title="to top" /></a>
|
|
<a href="javascript:scrollTo(0,100000)"><img src="view/theme/smoothly/images/tobottom.png" alt="to bottom" title="to bottom" /></a>
|
|
</div>
|
|
</footer>
|
|
|
|
<?php if (x($page, 'bottom')) echo $page['bottom']; ?>
|
|
</body>
|
|
</html>
|
|
|