This commit is contained in:
steven 2025-08-11 22:23:30 +02:00
commit 72a26edcff
22092 changed files with 2101903 additions and 0 deletions

25
template/tpl/main.tpl Normal file
View file

@ -0,0 +1,25 @@
<div id="main" class="container-fluid" style="background-color:#333333"></div>
<!-- ------------------------------------------------------------ -->
{literal}
<script type="text/javascript">
$.ajax({
type : "POST",
url : 'ajax.php?s=main_home&tpl',
cache : false,
dataType : "html",
success : function(data){
$("#main").html(data);
},
});
</script>
{/literal}