layout.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title><?=$this->e( $info['title'] . ' - ' . $config['app_name'] )?></title>
  5. <link rel="stylesheet" href="<?=$this->e( $config['theme_url'] )?>/css/style.css" />
  6. <?php
  7. if ( isset( $head_append ) ) {
  8. echo $head_append;
  9. }
  10. ?>
  11. </head>
  12. <body class="<?=$this->e( $body_class )?>">
  13. <div class="wrap">
  14. <div class="headerbar">
  15. <h1 class="sitetitle"><a href="<?=$this->e( $config['base_url'] )?>">Vioscope</a></h1>
  16. <form class="searchform" action="<?=$this->e( $config['base_url'] )?>/search" method="get">
  17. <input class="searchfield" type="text" name="q" placeholder="Search" value="<?php echo ( isset( $_GET['q'] ) ) ? $_GET['q'] : ''; ?>" />
  18. </form>
  19. <div class="options">
  20. <a class="option" title="Trending" href="<?=$this->e( $config['base_url'] )?>/feed/trending">📈</a>
  21. </div>
  22. </div>
  23. <?=$this->section( 'content' )?>
  24. <div class="footer">
  25. <div class="left element"><?=$config['footer_text_1']?></div>
  26. <div class="right element"><?=$config['footer_text_2']?></div>
  27. </div>
  28. </div>
  29. <?=@$body_append?>
  30. </body>
  31. </html>