search.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /**
  3. * Building view.
  4. *
  5. * Contains the view layout and some code to present the data
  6. *
  7. * @author Iñigo Valentin <i@inigovalentin.com>
  8. * @license https://www.gnu.org/licenses/gpl-3.0.en.html GNU General Public License V3
  9. * @package SWDB
  10. * @category View
  11. * @property Search_Page $page The page model,.
  12. * @var Search_Page $page The page model,.
  13. */
  14. ?>
  15. <!DOCTYPE html>
  16. <html lang='en'>
  17. <head>
  18. <?=$page->generate_head()?>
  19. </head>
  20. <body>
  21. <header>
  22. <?php
  23. include __DIR__ . "/inc/header_app.php";
  24. ?>
  25. </header>
  26. <aside id='filters' class='content filters'>
  27. <h2 id='filters_title'>
  28. Search filters
  29. </h2>
  30. <p>
  31. </p>
  32. </aside>
  33. <main>
  34. <section class='content'>
  35. <h2>
  36. Results
  37. </h2>
  38. <article>
  39. </article>
  40. </section>
  41. </main>
  42. <?php
  43. include __DIR__ . "/inc/footer.php";
  44. ?>
  45. </body>
  46. </html>