title.html 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <section class="content-header">
  2. <volist name="li_info" id="li_one"}
  3. <notempty name="li_one['li_two']"}
  4. <!--存在二级标题-->
  5. <volist name="li_one['li_two']" id="li_two"}
  6. <eq name="sign" value="$li_two.sign"}
  7. <h1>
  8. {$li_two.title}
  9. <small>{$li_two.description}</small>
  10. </h1>
  11. <ol class="breadcrumb">
  12. <li><i class="fa fa-dashboard"></i>{$li_one.title}</li>
  13. <li class="active"><a href="__MODULE__/<{$li_two.module}>">{$li_two.title}</a></li>
  14. </ol>
  15. </eq>
  16. </volist>
  17. <else />
  18. <!--不存在-->
  19. <eq name="sign" value="$li_one.sign"}
  20. <h1>
  21. {$li_one.title}
  22. <small>{$li_one.description}</small>
  23. </h1>
  24. <ol class="breadcrumb">
  25. <li><i class="fa fa-dashboard"></i><a href="__MODULE__/{$li_one.module}">{$li_one.title}</a></li>
  26. </ol>
  27. </eq>
  28. </notempty>
  29. </volist>
  30. </section>