container.php 456 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. {include file="public/frame_head" /}
  5. <title>{block name="title"}{/block}</title>
  6. {block name="head_top"}{/block}
  7. {include file="public/style" /}
  8. {block name="head"}{/block}
  9. </head>
  10. <body class="gray-bg">
  11. <div class="wrapper wrapper-content">
  12. {block name="content"}{/block}
  13. {block name="foot"}{/block}
  14. {block name="script"}{/block}
  15. {include file="public/frame_footer" /}
  16. </div>
  17. </body>
  18. </html>