mostly filebased Content Presentation System
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

87 lines
3.3KB

  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="apple-touch-icon" sizes="180x180" href="/{{ @RESOURCES }}favicons/apple-touch-icon.png">
  11. <link rel="icon" type="image/png" sizes="32x32" href="/{{ @RESOURCES }}favicons/favicon-32x32.png">
  12. <link rel="icon" type="image/png" sizes="16x16" href="/{{ @RESOURCES }}favicons/favicon-16x16.png">
  13. <link rel="manifest" href="/{{ @RESOURCES }}favicons/site.webmanifest">
  14. <link rel="shortcut icon" href="/{{ @RESOURCES }}favicons/favicon.ico">
  15. <meta name="msapplication-TileColor" content="#ffffff">
  16. <meta name="msapplication-config" content="/{{ @RESOURCES }}favicons/browserconfig.xml">
  17. <meta name="theme-color" content="#ffffff">
  18. <link href="/{{ @RESOURCES }}featherlight.min.css" type="text/css" rel="stylesheet" />
  19. <script type="text/javascript" src="/{{ @RESOURCES }}jquery-3.3.1.min.js"></script>
  20. <script type="text/javascript" src="/{{ @RESOURCES }}script.js"></script>
  21. <link type="text/css" href="/{{ @RESOURCES }}style.css" rel="stylesheet" />
  22. <title>{{ @title }}</title>
  23. <style>
  24. <include href="colors.css" />
  25. </style>
  26. </head>
  27. <body class="{{ @bodyClass }}">
  28. <div id="backdrop"></div>
  29. <div id="page-wrap">
  30. <header>
  31. <include href="header.htm">
  32. </header>
  33. <div id="mobile-nav">
  34. <a class="menu-toggle" onClick="javascript:toggle_menu();"></a>
  35. <div class="the_list"><div>
  36. <a class="home_link {{ @is_home ? 'active': '' }}" href="{{ 0 ? @SITE_URL : "/" }}{{ @LANG != @default_lang ? "?lang=".@LANG : "" }}">HOME</a>
  37. <include href="navigation.htm" with="menu={{ @navi.main }}" />
  38. <div id="modileFooterNav">
  39. <include href="navigation.htm" with="menu={{ @navi.footer }}" />
  40. </div>
  41. <div id="mobileLanguageNav">
  42. <include href="navigation.htm" with="menu={{ @navi.mobilelang }}" />
  43. </div>
  44. </div></div>
  45. </div> <!-- #mobile-nav -->
  46. <div id="platzhalter"></div>
  47. <section id="content">
  48. <include href="maincontent.htm" />
  49. <include href="sidebar.htm" />
  50. </section>
  51. </div> <!-- #page-wrap -->
  52. <footer id="main-footer">
  53. <nav>
  54. <include href="navigation.htm" with="menu={{ @navi.footer }}" />
  55. </nav>
  56. </footer>
  57. <check if="{{ @backend }}">
  58. <div id="admin-panel">{{ @backend | raw }}</div>
  59. </check>
  60. <script type="text/javascript" src="/{{ @RESOURCES }}featherlight.min.js"></script>
  61. </body>
  62. </html>