|
- <!doctype html>
- <html lang="{{ @LANG }}">
- <head>
- <meta content="text/html; charset=utf-8" http-equiv="content-type" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <check if="{{ @hideFromSearchEngines }}">
- <meta name="robots" content="noindex, nofollow">
- </check>
- <meta name="viewport" content="width=device-width, initial-scale=1">
-
- <link rel="apple-touch-icon" sizes="180x180" href="/{{ @RESOURCES }}favicons/apple-touch-icon.png">
- <link rel="icon" type="image/png" sizes="32x32" href="/{{ @RESOURCES }}favicons/favicon-32x32.png">
- <link rel="icon" type="image/png" sizes="16x16" href="/{{ @RESOURCES }}favicons/favicon-16x16.png">
- <link rel="manifest" href="/{{ @RESOURCES }}favicons/site.webmanifest">
- <link rel="shortcut icon" href="/{{ @RESOURCES }}favicons/favicon.ico">
- <meta name="msapplication-TileColor" content="#ffffff">
- <meta name="msapplication-config" content="/{{ @RESOURCES }}favicons/browserconfig.xml">
- <meta name="theme-color" content="#ffffff">
-
-
-
- <link href="/{{ @RESOURCES }}featherlight.min.css" type="text/css" rel="stylesheet" />
-
- <script type="text/javascript" src="/{{ @RESOURCES }}jquery-3.3.1.min.js"></script>
- <script type="text/javascript" src="/{{ @RESOURCES }}script.js"></script>
-
- <link type="text/css" href="/{{ @RESOURCES }}style.css" rel="stylesheet" />
- <title>{{ @title }}</title>
- <style>
- <include href="colors.css" />
- </style>
- </head>
-
- <body class="{{ @bodyClass }}">
-
- <div id="backdrop"></div>
-
- <div id="page-wrap">
-
- <header>
- <include href="header.htm">
- </header>
-
- <div id="mobile-nav">
- <a class="menu-toggle" onClick="javascript:toggle_menu();"></a>
- <div class="the_list"><div>
- <a class="home_link {{ @is_home ? 'active': '' }}" href="{{ 0 ? @SITE_URL : "/" }}{{ @LANG != @default_lang ? "?lang=".@LANG : "" }}">HOME</a>
- <include href="navigation.htm" with="menu={{ @navi.main }}" />
- <div id="modileFooterNav">
- <include href="navigation.htm" with="menu={{ @navi.footer }}" />
- </div>
- <div id="mobileLanguageNav">
- <include href="navigation.htm" with="menu={{ @navi.mobilelang }}" />
- </div>
- </div></div>
- </div> <!-- #mobile-nav -->
-
- <div id="platzhalter"></div>
-
- <section id="content">
-
- <include href="maincontent.htm" />
-
- <include href="sidebar.htm" />
-
- </section>
-
-
-
- </div> <!-- #page-wrap -->
- <footer id="main-footer">
-
- <nav>
- <include href="navigation.htm" with="menu={{ @navi.footer }}" />
- </nav>
-
- </footer>
-
- <check if="{{ @backend }}">
- <div id="admin-panel">{{ @backend | raw }}</div>
- </check>
-
- <script type="text/javascript" src="/{{ @RESOURCES }}featherlight.min.js"></script>
-
- </body>
- </html>
|