123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>培训</title>
- <include file="public@head"/>
- <hook name="before_head_end"/>
- </head>
- <body>
- <include file="public@nav"/>
- <div class="content">
- <div class="ma">
- <div class="path">
- <a href="/">首页</a> >
- <volist name="path_list" id="p">
- <a href="{:cmf_url('index')}?category_id={$p['id']}">{$p['name']}</a> >
- </volist>
- </div>
- <div class="clearfix">
- <div class="fl leftNav">
- <dl>
- <dt>{$category_self.name}</dt>
- <volist name="category_child" id="c">
- <dd>
- <a class="Cur" href="{:cmf_url('index')}?category_id={$c['id']}">{$c['name']}</a>
- </dd>
- </volist>
- </dl>
- </div>
- <!-- end leftNav-->
- <div class="fr rightCon">
- <div class="rtit">
- <span>{$category_self.name}</span>
- <div class="fr search">
- <input type="text" placeholder="搜索课程" class="searchInp" value="{$keyword}">
- <input type="button" class="searSub">
- </div>
- </div>
- <!-- end rtit-->
- <div class="list">
- <ul>
- <volist name="list" id="l">
- <li>
- <span>
- <a href="{:cmf_url('article/index')}?id={$l['id']}">{$l.post_title}</a>
- </span>
- <i>{:date('Y-m-d',$l['published_time'])}</i>
- </li>
- </volist>
- </ul>
- </div>
- <ul class="pagination">{$page|raw}</ul>
- <!-- end couseList-->
- </div>
- <!-- end rightCon-->
- </div>
- </div>
- </div>
- <!-- end content-->
- <include file="public@footer"/>
- <script>
- $('.searSub').click(function () {
- let searchText = $('.searchInp').val();
- location.href = "{:cmf_url('index')}?category_id={$category_self.id}&keyword=" + searchText;
- });
- </script>
- </body>
- </html>
|