mostly filebased Content Presentation System
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.7KB

  1. <!doctype html>
  2. <html lang="{{ @LANG }}">
  3. <head>
  4. <meta content="text/html; charset=utf-8" http-equiv="content-type" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <check if="{{ @hideFromSearchEngines }}">
  7. <meta name="robots" content="noindex, nofollow">
  8. </check>
  9. <meta name="viewport" content="width=device-width, initial-scale=1">
  10. <link rel="icon" href="/{{ @RESOURCES }}favicon.png" />
  11. <link href="/{{ @RESOURCES }}featherlight.min.css" type="text/css" rel="stylesheet" />
  12. <script type="text/javascript" src="/{{ @RESOURCES }}jquery-3.3.1.min.js"></script>
  13. <script type="text/javascript" src="/{{ @RESOURCES }}script.js"></script>
  14. <link type="text/css" href="/{{ @RESOURCES }}style.css" rel="stylesheet" />
  15. <title>{{ @title }}</title>
  16. <style>
  17. <include href="colors.css" />
  18. li { margin-left:1em; }
  19. </style>
  20. </head>
  21. <body class="{{ @bodyClass }}">
  22. <div id="mobile-nav">
  23. <a class="menu-toggle" onClick="javascript:toggle_menu();"></a>
  24. <div class="the_list">
  25. <include href="navigation.htm" with="menu={{ @navi.main }}" />
  26. <include href="navigation.htm" with="menu={{ @navi.footer }}" />
  27. <include href="navigation.htm" with="menu={{ @navi.languages }}" />
  28. </div>
  29. </div> <!-- #mobile-nav -->
  30. <div id="page-wrap">
  31. <header>
  32. <include href="header.htm">
  33. </header>
  34. <nav id="main-nav">
  35. <include href="navigation.htm" with="menu={{ @navi.main }}" />
  36. <div class="network">
  37. <include href="navigation.htm" with="menu={{ @navi.network }}">
  38. </div>
  39. </nav>
  40. <div id="platzhalter"></div>
  41. <section id="content">
  42. <include href="maincontent.htm" />
  43. <include href="sidebar.htm" />
  44. </section>
  45. <footer id="main-footer">
  46. <nav>
  47. <include href="navigation.htm" with="menu={{ @navi.footer }}" />
  48. </nav>
  49. <nav id="languages">
  50. <include href="navigation.htm" with="menu={{ @navi.languages }}" />
  51. </nav>
  52. </footer>
  53. </div> <!-- #page-wrap -->
  54. <check if="{{ @backend }}">
  55. <div id="admin-panel">{{ @backend | raw }}</div>
  56. </check>
  57. <script type="text/javascript" src="/{{ @RESOURCES }}featherlight.min.js"></script>
  58. </body>
  59. </html>