mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 12:25:16 +00:00
Upgraded initialization system
This commit is contained in:
55
system/tpl/page.tpl
Normal file
55
system/tpl/page.tpl
Normal file
@ -0,0 +1,55 @@
|
||||
<!--
|
||||
Comunic web app client
|
||||
Main HTML file
|
||||
|
||||
(c) Pierre HUBERT 2017
|
||||
-->
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<!-- Page title, should be automaticaly modified next -->
|
||||
<title>Comunic</title>
|
||||
|
||||
<!-- Make the website responsive -->
|
||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||
|
||||
<!-- UTF-8 support -->
|
||||
<meta charset="utf-8">
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="icon" type="image/vnd.microsoft.icon" href="{ASSETS_URL}img/favicon.png" />
|
||||
<link rel="shortcut icon" type="image/x-icon" href="{ASSETS_URL}img/favicon.png" />
|
||||
|
||||
<!--3rdPary Stylesheet requirements -->
|
||||
{THIRD_PARTY_CSS}
|
||||
|
||||
<!--App Stylesheet requirements -->
|
||||
{APP_CSS}
|
||||
|
||||
<!-- Javascript config -->
|
||||
{js_config}
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<!-- Welcome message -->
|
||||
<div style="text-align: center; font-size: 150%; padding-top: 10%;">
|
||||
Welcome !<br />
|
||||
Bienvenue !<br /><br />
|
||||
|
||||
<img src="{ASSETS_URL}img/roundProgress.gif" /><br /><br />
|
||||
|
||||
Please wait while Comunic is starting...<br />
|
||||
Veuillez patienter pendant le démarrage de Comunic...<br /><br />
|
||||
|
||||
|
||||
<p><small>If this screen doesn't disappear after a while, please check javascript is enabled in your browser...</small></p>
|
||||
</div>
|
||||
|
||||
<!-- 3rdparty Javascript files inclusion -->
|
||||
{THIRD_PARTY_JS}
|
||||
|
||||
<!-- Application Javascript files inclusion -->
|
||||
{APP_JS}
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user