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

109 lines
5.0KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>增加自定义页面</title>
  6. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  7. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="../static/web/css/admin.css">
  9. <script language="javascript" src="../static/web/js/jquery.min.js"></script>
  10. <script src="../static/web/js/bootstrap.bundle.min.js"></script>
  11. <script language="javascript" src="js/main.js"></script>
  12. <script language="javascript">
  13. function checkSubmit() {
  14. if (document.form1.title.value == "") {
  15. ShowMsg("页面名称不能为空");
  16. document.form1.title.focus();
  17. return false;
  18. }
  19. if (document.form1.nfilename.value == "") {
  20. ShowMsg("文件名不能为空");
  21. document.form1.nfilename.focus();
  22. return false;
  23. }
  24. }
  25. </script>
  26. </head>
  27. <body>
  28. <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3">
  29. <tr>
  30. <td height="26" background="../static/web/img/tbg.gif" style="padding-left:10px"><a href="templets_one.php">单独页面管理</a> &gt; 增加自定义页面</td>
  31. </tr>
  32. <tr>
  33. <td height="200">
  34. <table width="100%" cellspacing="4" cellpadding="2" class="table table-borderless">
  35. <form action="templets_one_add.php" method="post" name="form1" onSubmit="return checkSubmit()">
  36. <input type='hidden' name='dopost' value='save'>
  37. <tr>
  38. <td colspan="2">单独页面管理仅适用于页面较少的情况(建议小于500个页面)大量文档的用文章模型进行管理</td>
  39. </tr>
  40. <tr>
  41. <td width="260" height="26">页面标题:</td>
  42. <td><input name="title" type="text" id="title" style="width:260px"></td>
  43. </tr>
  44. <tr>
  45. <td height="26">页面关键词:</td>
  46. <td><input name="keywords" type="text" id="keywords" style="width:260px">(用&quot;,&quot;分开{dede:field name='keywords'/})</td>
  47. </tr>
  48. <tr>
  49. <td height="26">页面摘要信息:</td>
  50. <td><textarea name="description" id="description" style="width:360px;height:50px"></textarea>(100字左右{dede:field name='description'/})</td>
  51. </tr>
  52. <tr>
  53. <td height="26">关联标识:</td>
  54. <td>
  55. <input name="likeid" type="text" id="likeid" value="" style="width:260px">
  56. <?php
  57. echo "<select name='likeidsel' id='likeidsel' style='width:160px'>";
  58. $dsql->Execute('s',"Select likeid From `#@__sgpage` group by likeid ");
  59. echo "<option value='default'>default</option>";
  60. while($arr = $dsql->GetArray('s'))
  61. {
  62. echo "<option value='{$arr['likeid']}'>{$arr['likeid']}</option>";
  63. }
  64. echo "</select>";
  65. ?>(通过这个标识来识别类同页面,模板中用{dede:likesgpage id='标识'/}调用有相同标识的页面)
  66. </td>
  67. </tr>
  68. <tr>
  69. <td height="26">文件名:</td>
  70. <td><input name="nfilename" type="text" id="nfilename" value="<?php echo $cfg_arcdir.'/newfile{$nowid}.html'; ?>" style="width:260px">(相对于CMS安装目录)</td>
  71. </tr>
  72. <tr>
  73. <td height="26">模板文件名:</td>
  74. <td><input name="template" type="text" id="template" value="{style}/singlepage.htm" style="width:260px"></td>
  75. </tr>
  76. <tr>
  77. <td height="26">是否编译内容:</td>
  78. <td>
  79. <label><input name="ismake" type="radio" value="1">
  80. 含模板标记,要编译</label>
  81. <label><input name="ismake" type="radio" value="0" checked>
  82. 不含模板标记,不需要编译</label>
  83. </td>
  84. </tr>
  85. <tr>
  86. <td height="26" colspan="2">
  87. <div class="alert alert-warning mb-0">内容:模板里用{dede:field name='body'/}来获得</div>
  88. </td>
  89. </tr>
  90. <tr>
  91. <td height="80" colspan="2">
  92. <?php
  93. GetEditor("body","","450","Default","print","false");
  94. ?>
  95. </td>
  96. </tr>
  97. <tr>
  98. <td colspan="2" align="center" class="py-3">
  99. <button type="submit" name="button1" id="button1" class="btn btn-success btn-sm">保存</button>
  100. <button type="button" onClick="document.form1.reset();" class="btn btn-success btn-sm">重置</button>
  101. </td>
  102. </tr>
  103. </form>
  104. </table>
  105. </td>
  106. </tr>
  107. </table>
  108. </body>
  109. </html>