25 lines
435 B
Smarty
25 lines
435 B
Smarty
|
|
<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}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|