first commit

This commit is contained in:
2024-04-19 14:04:41 +07:00
commit 014283036f
7282 changed files with 1324127 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<div class="slickit" style="margin:71px 0 10px 0; background: #1BA964;">
<?php
$data=$db->query("SELECT * FROM info where st_aktif = 1");
foreach($data->fetchAll() as $row){
$bg_info = ($row['info_class'] != '') ? $row['info_class'] : '';
echo '<div style="padding: .5rem 1rem !important;margin-bottom:.25rem !important;color:#fff;" class="'.$bg_info.'"><i class="fa fa-chevron-right"></i> '.$row['isi_info'].'</div>';
}
?>
</div>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery(".slickit").slick({
"autoplay" : true,
"autoplaySpeed" : 5000,
"arrows" : false,
"dots" : false
});
});
</script>