| 1 | <!DOCTYPE html> | 1 | <!DOCTYPE html> | 
| 2 | <html lang="fr"> | 2 | <html lang="{{ lang.getLocale}}"> | 
| 3 |     <head> | 3 |     <head> | 
| 4 |         {% HOOK.frontHead %} | 4 |         {% HOOK.frontHead %} | 
| 5 |         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | 5 |         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | 
| 6 |         <title>{{ SHOW.titleTag }}</title> | 6 |         <title>{{ SHOW.titleTag }}</title> | 
| 7 |         <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=5" /> | 7 |         <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=5"/> | 
| 8 |         <meta name="description" content="{{ SHOW.metaDescriptionTag }}" /> | 8 |         <meta name="description" content="{{ SHOW.metaDescriptionTag }}"/> | 
| 9 |         <link rel="icon" href="{{ SHOW.themeIcon }}" /> | 9 |         <link rel="icon" href="{{ SHOW.themeIcon }}"/> | 
| 10 |         {{ SHOW.linkTags }}  | 10 |         <base href="{{ SHOW.siteUrl }}/">  | 
| 11 |         {{ SHOW.scriptTags }} | 11 |         {{ SHOW.linkTags }} | 
| 12 |         {% HOOK.endFrontHead %}          | 12 |         {{ SHOW.scriptTags }}  | 
| 13 |     </head>  | 13 |         {{ SHOW.showMetas }}  | 
| 14 |     <body>  | 14 |         {% HOOK.endFrontHead %}  | 
| 15 |         <div id="container"> | 15 |     </head> | 
| 16 |             <div id="header"> | 16 |     <body> | 
| 17 |                 <nav id="header_content"> | 17 |         <div id="container"> | 
| 18 |                     <button id="mobile_menu" aria-label="Menu"></button>  | 18 |             <div id="header">  | 
| 19 |                     <p id="siteName"><a href="{{ SHOW.siteUrl }}">{{ SHOW.siteName }}</a></p>  | 19 |                 <nav id="header_content">  | 
| 20 |                     <ul id="navigation">  | 20 |                     <button id="mobile_menu" aria-label="{{ Lang.site-menu-label }}"></button>  | 
| 21 |                         {{ SHOW.mainNavigation }}  | 21 |                     <p id="siteName">  | 
| 22 |                         {% HOOK.endMainNavigation %}  | 22 |                         <a href="{{ SHOW.siteUrl }}">{{ SHOW.siteName }}</a>  | 
| 23 |                     </ul> | 23 |                     </p> | 
| 24 |                 </nav> | 24 |                     <ul id="navigation"> | 
| 25 |             </div>  | 25 |                         {{ SHOW.mainNavigation }}  | 
| 26 |             <div id="alert-msg">  | 26 |                         {% HOOK.endMainNavigation %}  | 
| 27 |                 {{ SHOW.displayMsg }}  | 27 |                     </ul>  | 
| 28 |             </div> | 28 |                 </nav> | 
| 29 |             <div id="banner"></div> | 29 |             </div> | 
| 30 |             <main id="body"> | 30 |             <div id="alert-msg"> | 
| 31 |                 {% IF CORE.getConfigVal(hideTitles) == 0 %}  | 31 |                 {{ SHOW.displayMsg }}  | 
| 32 |                     <div id="pageTitle"> | 32 |             </div> | 
| 33 |                     {{ SHOW.mainTitle }}  | 33 |             <div id="banner">  | 
| 34 |                 </div> | 34 |                 <div id="siteDesc"> | 
| 35 |                 {% ENDIF %}  | 35 |                     {{ SHOW.siteDesc}}  | 
| 36 |                 <div id="body-page"> | 36 |                 </div> | 
| 37 |                     <div id="content" class="{{ SHOW.pluginId }}"> | 37 |             </div> | 
| 38 |                         {{ CONTENT }}  | 38 |             <main id="body">  | 
| 39 |                     </div>  | 39 |                 {% IF CORE.getConfigVal(hideTitles) == 0 %}  | 
| 40 |                     {{ show.displayPublicSidebar() }}  | 40 |                     <div id="pageTitle">  | 
| 41 |                 </div>  | 41 |                         {{ SHOW.mainTitle }}  | 
| 42 |             </main> | 42 |                     </div> | 
| 43 |             <div id="footer">  | 43 |                 {% ENDIF %}  | 
| 44 |                 <div id="footer_content"> | 44 |                 <div id="body-page"> | 
| 45 |                     {% HOOK.footer %}  | 45 |                     <div id="content" class="{{ SHOW.pluginId }}">  | 
| 46 |                     <p>  | 46 |                         {{ CONTENT }}  | 
| 47 |                         <a target='_blank' href='https://github.com/299ko/'>Just using 299ko</a> - Thème {{ SHOW.theme }} - <a rel="nofollow" href="{{ util.urlBuild("", true) }}">Administration</a>  | 47 |                     </div>  | 
| 48 |                     </p>  | 48 |                     {{ show.displayPublicSidebar() }}  | 
| 49 |                     {% HOOK.endFooter %}  | 49 |                 </div>  | 
| 50 |                 </div> | 50 |             </main> | 
| 51 |             </div> | 51 |             <div id="footer"> | 
| 52 |         </div> | 52 |                 <div id="footer_content"> | 
| 53 |         {% HOOK.endFrontBody %} | 53 |                     {% HOOK.footer %} | 
| 54 |     </body> | 54 |                     <p> | 
|  |   | 55 |                         <a target='_blank' href='https://299ko.ovh'>{{ Lang.site-just-using( ) }}</a>  | 
|  |   | 56 |                         -  | 
|  |   | 57 |                         {{ Lang.site-theme }}  | 
|  |   | 58 |                         {{ SHOW.theme }}  | 
|  |   | 59 |                         -  | 
|  |   | 60 |                         {% if IS_LOGGED %}  | 
|  |   | 61 |                             <a rel="nofollow" href="{{ ROUTER.generate("logout") }}">{{ Lang.core-disconnection }}</a>  | 
|  |   | 62 |                             {% if IS_ADMIN %}  | 
|  |   | 63 |                                 -  | 
|  |   | 64 |                                 <a rel="nofollow" href="{{ ROUTER.generate("admin") }}">{{ Lang.site-admin }}</a>  | 
|  |   | 65 |                             {% endif %}  | 
|  |   | 66 |                         {% else %}  | 
|  |   | 67 |                             <a rel="nofollow" href="{{ ROUTER.generate("login") }}">{{ Lang.core-connection }}</a>  | 
|  |   | 68 |                         {% endif %}  | 
|  |   | 69 |                     </p>  | 
|  |   | 70 |                     {% HOOK.endFooter %}  | 
|  |   | 71 |                 </div>  | 
|  |   | 72 |             </div>  | 
|  |   | 73 |         </div>  | 
|  |   | 74 |         {% HOOK.endFrontBody %}  | 
|  |   | 75 |     </body>  | 
| 55 | </html> | 76 | </html> | 
|  |  | 
|  |  |  |  |