Files
2025-03-05 14:02:29 +09:00

13 lines
235 B
PHP

<?=$this->extend('templates/front_example.php');?>
<?=$this->section('content');?>
<!--html 쓰는곳-->
<?=$this->endSection();?>
<?=$this->section('script');?>
<script>
//스크립트 쓰는곳
</script>
<?=$this->endSection();?>