1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>{$news.post_title}</title>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
- <meta content="telephone=no" name="format-detection" />
- <!-- Set render engine for 360 browser -->
- <meta name="renderer" content="webkit">
- <!-- No Baidu Siteapp-->
- <meta http-equiv="Cache-Control" content="no-siteapp"/>
- <link href="__STATIC__/appapi/css/page.css" rel="stylesheet">
- <style>
- body{
- background:#110D24;
- color:#FFF;
- }
- p{
- color: #FFF;
- }
- .news_content .news_bd{
- margin:0;
- }
- </style>
- </head>
- <body class="body-white">
- <div class="container tc-main">
- <div class="page_content">
- {$news.post_content}
- </div>
-
- </div>
- <!-- /container -->
- </body>
- </html>
|