You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.5 KiB

3 years ago
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title><?php echo sysconfig('CMS_SEOTITLE'); ?></title><meta name="keywords" content="<?php echo sysconfig('CMS_KEYWORDS'); ?>" /><meta name="description" content="<?php echo sysconfig('CMS_DESCRIPTION'); ?>" />
  8. <link rel="stylesheet" href="/css/reset.css">
  9. <link rel="stylesheet" href="/css/details.css">
  10. </head>
  11. <body>
  12. <header class="header">
  13. <div class="content">
  14. <img class="logo" src="/img/logo.jpg" alt="">
  15. <ul class="nav">
  16. <li><a href="/index.html">首页</a></li>
  17. <li><a href="/index.html#product">产品中心</a></li>
  18. <li><a class="active" href="/index.html#journalism">新闻中心</a></li>
  19. <li><a href="/index.html#about">公司介绍</a></li>
  20. <li><a href="/index.html#culture">企业文化</a></li>
  21. <li><a href="/index.html#contact">联系我们</a></li>
  22. </ul>
  23. </div>
  24. </header>
  25. <section class="text">
  26. <div class="content">
  27. <h1 class="page-header" style="text-align:center;"><?php echo $post["title"]; ?></h1>
  28. <div style="text-align:center;margin-bottom: 30px">发布时间:{{date("Y-m-d",$post["pubdate"])}} </div>
  29. <div class="content mt10"><?php echo $post["body"]; ?></div>
  30. </div>
  31. </section>
  32. @include('home.common.footer')
  33. <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  34. </body>
  35. </html>