news.html 828 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{$news.post_title}</title>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  8. <meta content="telephone=no" name="format-detection" />
  9. <!-- Set render engine for 360 browser -->
  10. <meta name="renderer" content="webkit">
  11. <!-- No Baidu Siteapp-->
  12. <meta http-equiv="Cache-Control" content="no-siteapp"/>
  13. <link href="__STATIC__/appapi/css/page.css" rel="stylesheet">
  14. <style>
  15. body{
  16. background:#110D24;
  17. color:#FFF;
  18. }
  19. p{
  20. color: #FFF;
  21. }
  22. .news_content .news_bd{
  23. margin:0;
  24. }
  25. </style>
  26. </head>
  27. <body class="body-white">
  28. <div class="container tc-main">
  29. <div class="page_content">
  30. {$news.post_content}
  31. </div>
  32. </div>
  33. <!-- /container -->
  34. </body>
  35. </html>