国内流行的内容管理系统(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.

46 lines
2.0KB

  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. <link rel="stylesheet" href="/static/web/css/daterangepicker.css">
  12. </head>
  13. <body>
  14. <?php obtaintheme('top.htm');?>
  15. <main class="container py-3">
  16. <nav aria-label="breadcrumb">
  17. <ol class="breadcrumb">
  18. <li class="breadcrumb-item"><a href="/">首页</a></li>
  19. <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>
  20. <li class="breadcrumb-item"><?php echo $diy->name;?>发布</li>
  21. </ol>
  22. </nav>
  23. <div class="mb-3">
  24. <a href="<?php echo $cfg_phpurl?>/diy.php?action=list&diyid=<?php echo $diy->diyid;?>" class="btn btn-success btn-sm">返回列表</a>
  25. </div>
  26. <form name="addcontent" action="<?php echo $cfg_phpurl?>/diy.php" method="post" enctype="multipart/form-data">
  27. <input type="hidden" name="action" value="post">
  28. <input type="hidden" name="diyid" value="<?php echo $diyid;?>">
  29. <input type="hidden" name="do" value="2">
  30. <table class="table mb-0">
  31. <?php echo $postform;?>
  32. <tr>
  33. <td align="center">
  34. <button type="submit" name="submit" class="btn btn-success btn-sm">提交</button>
  35. <button type="reset" name="reset" class="btn btn-outline-success btn-sm">重置</button>
  36. </td>
  37. </tr>
  38. </table>
  39. </form>
  40. </main>
  41. <?php obtaintheme('foot.htm');?>
  42. <script src="/static/web/js/moment.min.js"></script>
  43. <script src="/static/web/js/daterangepicker.js"></script>
  44. <script src="/static/web/js/diy.js"></script>
  45. </body>
  46. </html>