12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <!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="container">
- <div class="row">
- <div class="col-md-4 mt20">
- <ul class="list-group">
- <empty name="category_child">
- <li class="list-group-item">
- <a href="{:cmf_url('list/index')}">文章列表</a>
- </li>
- <else/>
- <volist name="category_child" id="vo">
- <li class="list-group-item">
- <a href="{:cmf_url('list/index')}?category_id={$vo.id}">{$vo.name}</a>
- </li>
- </volist>
- </empty>
- </ul>
- </div>
- <div class="col-md-8 mt20">
- <nav aria-label="breadcrumb">
- <ol class="breadcrumb">
- <li class="breadcrumb-item"><a href="/">培训教育</a></li>
- <li class="breadcrumb-item"><a href="{:cmf_url('list/index')}">文章列表</a></li>
- <volist name="path_list" id="vo" key="k">
- <if condition="count($path_list) == $k">
- <li class="breadcrumb-item active" aria-current="page">{$vo.name}</li>
- <else/>
- <li class="breadcrumb-item"><a href="{:cmf_url('list/index')}?id={$vo['id']}">{$vo.name}</a></li>
- </if>
- </volist>
- </ol>
- </nav>
- <div class="row">
- <volist name="list" id="vo">
- <div class="col-md-6 news-course">
- <div class="new-box">
- <h4 class="no-wrap title">{$vo.post_title}</h4>
- <p class="no-wrap3 detail">{$vo.post_content}</p>
- <div class="other">
- <p class="fl time">{$vo.update_time}</p>
- <a href="{:cmf_url('article/index')}?id={$vo['id']}" class="fr">查看详情</a>
- <div class="clear"></div>
- </div>
- </div>
- </div>
- </volist>
- </div>
- <nav aria-label="Page navigation example" class="mt20">
- {$page|raw}
- </nav>
- </div>
- </div>
- </div>
- <include file="public@footer"/>
- </body>
- </html>
|