73 lines
2.0 KiB
PHP
Executable File
73 lines
2.0 KiB
PHP
Executable File
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
|
|
<head>
|
|
<?php $this->load->view('partial/head')?>
|
|
<link rel="stylesheet" href="/ART/cmtv/css/default.css">
|
|
</head>
|
|
|
|
<body>
|
|
<?php $this->load->view('partial/sidemenu')?>
|
|
<?php $this->load->view('partial/header')?>
|
|
<!-- //header -->
|
|
<main>
|
|
|
|
|
|
|
|
|
|
<section id="channel_list_section">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="channel_section mt30">
|
|
<div class="tit">
|
|
<h2>말씀영상 채널</h2>
|
|
|
|
</div>
|
|
<div class="list">
|
|
<ul><?php foreach($channels as $editor) { ?>
|
|
<li>
|
|
<div class="chimg">
|
|
<a
|
|
href="/cmtv/channel/<?php echo cleanUrl($editor->editorName)?>/<?php echo $editor->editorId?>"><img
|
|
src="<?php echo imgSrc($editor->editorImg)?>"></a>
|
|
</div>
|
|
<div class="txtbox">
|
|
<h3><a
|
|
href="/cmtv/channel/<?php echo cleanUrl($editor->editorName)?>/<?php echo $editor->editorId?>"><?php echo $editor->editorName?></a>
|
|
</h3>
|
|
<p><?php echo $editor->editorIntro?></p>
|
|
</div>
|
|
</li><?php }?>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</main>
|
|
<!-- footer -->
|
|
<?php $this->load->view('partial/footer')?>
|
|
<script src="/ART/cmtv/js/cmtv_slide.js"></script>
|
|
</body>
|
|
|
|
</html>
|