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.
 
 
 
 
 
 

118 lines
4.3 KiB

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="::LANG::">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" xml:lang="::LANG::" lang="::LANG::" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>
::if pageTitle!=null::
::pageTitle::
::else::
::NAME::
::end::
</title>
<!-- CagettePéi CSS -->
<link rel="stylesheet" type="text/css" href="/css/::getVariable('css')::/style.css"/>
<!--
<link rel="stylesheet" type="text/css" href="/css/::getVariable('css')::/shop.css"/>
<link rel="stylesheet" type="text/css" href="/css/::getVariable('css')::/map.css"/>-->
<!-- JQUERY -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<!-- BOOTSTRAP -->
<link rel="stylesheet" href="/css/bootstrap.min.css" />
<!-- bootstrap datepicker -->
<script type="text/javascript" src="/bower_components/moment/min/moment.min.js"></script>
<script type="text/javascript" src="/bower_components/moment/locale/fr.js"></script>
<script type="text/javascript" src="/bower_components/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js"></script>
<link rel="stylesheet" href="/bower_components/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css" />
<!-- Leaflet CSS -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.1/dist/leaflet.css"
integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ=="
crossorigin=""/>
<!-- typeahead
<script type="text/javascript" src="/bower_components/typeahead.js/dist/typeahead.jquery.js"></script> -->
<!-- font awesome -->
<script src="https://use.fontawesome.com/97d97e0dab.js"></script>
<!-- polyfill for IE11 : Object.assign() doesnt exists in IE11 , error in libs.js -->
<script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>
<!-- Haxe JS + libs bundled with browserify -->
<script type="text/javascript" src="/js/::getVariable('js')::/libs.js"></script>
<script type="text/javascript" src="/js/::getVariable('js')::/app.js"></script>
</head>
::if container==null:: ::set container="container":: ::end::
<body class="::container::">
::if DEBUG::
<div style="position: absolute;background: #666;padding: 8px;left: 0;color: #FF0;">DEBUG ::session.lang::</div>
::end::
::if HOST.substr(0,3)=="pp."::
<div style="position: absolute;background: #F60;padding: 8px;left: 0;color: #FF0;">PREPROD</div>
::end::
<!-- Modal window -->
<div class="modal" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h2 class="modal-title" id="myModalLabel"></h2>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer" style="clear:both;">
<button type="button" class="btn btn-default" data-dismiss="modal">
<span class='glyphicon glyphicon-remove'></span> ::_("Close")::
</button>
</div>
</div>
</div>
</div>
::raw __content__::
<script type="text/javascript">
//Google Analytics
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-17932663-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
$(function () {
//enable BS3 Tooltips & popovers
$('[data-toggle="tooltip"]').tooltip();
$('[data-toggle="popover"]').popover();
//init lang in js App
_.LANG = "::session.lang::";
//tutorials
::if tuto!=null::
_.getTuto("::tuto.name::",::tuto.step::);
::end::
_.antiDoubleClick();
})
</script>
</body>
</html>