common.html 695 B

12345678910
  1. <ul class="we7-page-tab">
  2. {if $action == 'news'}
  3. <li {if $action == 'news' && $do == 'list'} class="active"{/if}><a href="{php echo url('article/news/list');}">新闻列表</a></li>
  4. <li {if $action == 'news' && $do == 'category'} class="active"{/if}><a href="{php echo url('article/news/category');}">新闻分类</a></li>
  5. {/if}
  6. {if $action == 'notice'}
  7. <li {if $action == 'notice' && $do == 'list'} class="active"{/if}><a href="{php echo url('article/notice/list');}">公告列表</a></li>
  8. <li {if $action == 'notice' && $do == 'category'} class="active"{/if}><a href="{php echo url('article/notice/category');}">公告分类</a></li>
  9. {/if}
  10. </ul>