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

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="{dede:global name='cfg_soft_lang'/}">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  6. <title><?php echo $diy->name;?>-<?php echo $cfg_webname; ?></title>
  7. <link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css">
  8. <link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css">
  9. <link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css">
  10. <script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script>
  11. </head>
  12. <body>
  13. <div class="main mceneter">
  14. <?php pasterTempletDiy('header.htm');?>
  15. <div class="container">
  16. <div class="ctitle">
  17. <h3><?php echo $diy->name; ?>发布</h3>
  18. </div>
  19. <div class="cbox mceneter">
  20. <div class="maplist">
  21. <form action="<?php echo $cfg_cmspath;?>/apps/diy.php" enctype="multipart/form-data" method="post">
  22. <input type="hidden" name="action" value="post">
  23. <input type="hidden" name="diyid" value="<?php echo $diyid;?>">
  24. <input type="hidden" name="do" value="2">
  25. <table cellpadding="0" cellspacing="1" class="table">
  26. <?php
  27. echo $postform;
  28. ?>
  29. </table>
  30. <div align="center">
  31. <button type="submit" name="submit" class="btn btn-success btn-sm">提交</button>
  32. <button type="reset" name="reset" class="btn btn-success btn-sm">重置</button>
  33. </div>
  34. </form>
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39. <?php pasterTempletDiy('footer.htm');?>
  40. </body>
  41. </html>