国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
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.

41 lines
1.5KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  7. <title><?php echo $diy->name;?>-<?php echo $cfg_webname;?></title>
  8. <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
  9. <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
  10. <link rel="stylesheet" href="/static/web/css/style.css">
  11. </head>
  12. <body>
  13. <?php obtaintheme('top.htm');?>
  14. <main class="container py-3">
  15. <nav aria-label="breadcrumb">
  16. <ol class="breadcrumb">
  17. <li class="breadcrumb-item"><a href="/">首页</a></li>
  18. <li class="breadcrumb-item"><a href="<?php echo $cfg_phpurl?>/diy.php?action=list&diyid=<?php echo $diy->diyid;?>"><?php echo $diy->name;?>列表</a></li>
  19. <li class="breadcrumb-item"><?php echo $diy->name;?>查看</li>
  20. </ol>
  21. </nav>
  22. <div class="mb-3">
  23. <a href="<?php echo $cfg_phpurl?>/diy.php?action=post&diyid=<?php echo $diy->diyid;?>" class="btn btn-success btn-sm">发布信息</a>
  24. </div>
  25. <table class="table mb-0">
  26. <?php
  27. echo '<tbody>';
  28. echo '<tr><td bgcolor="#f8fafb">id'.$row['id'].'</td></tr>';
  29. $allowhtml = array('htmltext');
  30. foreach($fieldlist as $field=>$fielddata)
  31. {
  32. if ($row[$field]=='') continue;
  33. }
  34. echo '<tr><td>'.$fielddata[0].'</td></tr><tr><td>'.$row[$field].'</td></tr>';
  35. echo '</tbody>';
  36. ?>
  37. </table>
  38. </main>
  39. <?php obtaintheme('foot.htm');?>
  40. </body>
  41. </html>