123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!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('list/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('list/index')}?category_id={$c['id']}">{$c['name']}</a>
- </dd>
- </volist>
- </dl>
- </div>
- <!-- end leftNav-->
- <div class="fr rightCon">
- <div class="cont">
- <div class="title">{$article.post_title}</div>
- <div class="inputtime">{:date('Y-m-d H:i:s',$article.published_time)}</div>
- <div class="nr">
- {$article.post_content|raw}
- </div>
- </div>
- <!-- end couseList-->
- </div>
- <!-- end rightCon-->
- </div>
- </div>
- </div>
- <!-- end content-->
- <include file="public@footer"/>
- </body>
- </html>
|