help_detail.html 678 B

12345678910111213141516171819202122
  1. {extend name="base"/}
  2. {block name="resources"}
  3. <style>
  4. .form-wrap {margin-top: 0;}
  5. .guide-title, .guide-time {text-align: center;}
  6. .guide-title {font-size: 25px; font-weight: 600; height: 50px; line-height: 50px;}
  7. .guide-time {line-height: 24px;}
  8. .guide-time {color: #999999;}
  9. .guide-content {padding: 10px 80px 0; }
  10. </style>
  11. {/block}
  12. {block name="main"}
  13. <div class="layui-form form-wrap">
  14. <p class="guide-title">{$help_info.title}</p>
  15. <p class="guide-time">{$help_info.class_name} &nbsp; {$help_info.create_time|date='Y-m-d H:i:s'}</p>
  16. <div class="guide-content">
  17. {:html_entity_decode($help_info.content)}
  18. </div>
  19. </div>
  20. {/block}
  21. {block name="script"}
  22. {/block}