mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-17 00:45:14 +02:00
new file: view/theme/smoothly/default.php
new file: view/theme/smoothly/footer.tpl new file: view/theme/smoothly/header.tpl modified: view/theme/smoothly/nav.tpl modified: view/theme/smoothly/style.css modified: view/theme/smoothly/theme.php
This commit is contained in:
parent
816680ca85
commit
cd3938dfda
6 changed files with 78 additions and 17 deletions
30
view/theme/smoothly/default.php
Normal file
30
view/theme/smoothly/default.php
Normal file
|
@ -0,0 +1,30 @@
|
|||
<!DOCTYPE html >
|
||||
<html>
|
||||
<head>
|
||||
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
|
||||
<script>var baseurl="<?php echo $a->get_baseurl() ?>";</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']; ?>
|
||||
</footer>
|
||||
|
||||
<?php if (x($page, 'bottom')) echo $page['bottom']; ?>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue