detail.html 622 B

1234567891011121314151617181920
  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">{$info.title}</p>
  15. <p class="guide-time"> {$info.create_time|date='Y-m-d H:i:s'}</p>
  16. <div class="guide-content">{:html_entity_decode($info.content)}</div>
  17. </div>
  18. {/block}
  19. {block name="script"}
  20. {/block}