| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!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">
- <if condition="$id eq 165">
- <style>
- body{
- background:#FFF;
- color:#000;
- }
- p{
- color: #000;
- }
- .news_content .news_bd{
- margin:0;
- }
- </style>
- <else/>
- <style>
- body{
- background:#110D24;
- color:#FFF;
- }
- p{
- color: #FFF;
- }
- .news_content .news_bd{
- margin:0;
- }
- </style>
- </if>
- </head>
- <body class="body-white">
- <div class="container tc-main">
- <div class="page_content">
- {$news.post_content}
- </div>
-
- </div>
- <!-- /container -->
- </body>
- </html>
|