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