]> git.mxchange.org Git - friendica.git/blob - view/theme/frost-mobile/default.php
add settings sections and add contacts; other tweaks and fixes
[friendica.git] / view / theme / frost-mobile / default.php
1 <!DOCTYPE html >\r
2 <html>\r
3 <head>\r
4   <title><?php if(x($page,'title')) echo $page['title'] ?></title>\r
5   <script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>\r
6   <?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>\r
7 </head>\r
8 <body>\r
9         <?php if(x($page,'nav')) echo $page['nav']; ?>\r
10 \r
11         <?php if( $a->module === 'home' ) { ?>\r
12         <center>\r
13         <div class="login-button">\r
14         <a href="login" class="login-button-link"><img class="login-button-image" src="/images/friendika-1600.png" title="Click to log in"></a>\r
15         </div>\r
16         </center>\r
17 \r
18         <?php } elseif ( $a->module === 'login' || $a->module === 'register' || $a->module === 'lostpass' ) {\r
19         ?>\r
20         <div class='section-wrapper'>\r
21         <section><?php if(x($page,'content')) echo $page['content']; ?>\r
22         </section>\r
23         </div>\r
24 \r
25         <?php } else { ?>\r
26         <div class='main-container'>\r
27 <!--            <div class='main-content-container'>-->\r
28                 <div class='section-wrapper'>\r
29                 <?php if( ($a->module === 'settings') && x($page,'aside')) echo $page['aside']; ?>\r
30                 <section><?php if(x($page,'content')) echo $page['content']; ?>\r
31                         <div id="page-footer"></div>\r
32                 </section>\r
33                 </div>\r
34                 <right_aside><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></right_aside>\r
35                 <?php if( ($a->module === 'contacts') && x($page,'aside')) echo $page['aside']; ?>\r
36                 <footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>\r
37 <!--            </div>-->\r
38         </div>\r
39         <?php } ?>\r
40         <?php if(x($page,'end')) echo $page['end']; ?>\r
41 </body>\r
42 </html>\r
43 \r