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

111 lines
5.1KB

  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%" border="0" align="center" cellpadding="3" cellspacing="1" class="table maintable mt-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" bgcolor="#ffffff" valign="top">
  34. <table width="100%" border="0" cellspacing="4" cellpadding="2" class="table table-borderless mb-0">
  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="15%" height="26" align="center">页面标题:</td>
  42. <td><input name="title" type="text" id="title" size="30"></td>
  43. </tr>
  44. <tr>
  45. <td height="26" align="center">页面关键词:</td>
  46. <td><input name="keywords" type="text" id="keywords" size="30">(用&quot;,&quot;分开{dede:field name='keywords'/})</td>
  47. </tr>
  48. <tr>
  49. <td height="26" align="center">页面摘要信息:</td>
  50. <td><textarea name="description" cols="50" id="description"></textarea>(100字左右{dede:field name='description'/})</td>
  51. </tr>
  52. <tr>
  53. <td height="26" align="center">关联标识:</td>
  54. <td>
  55. <input name="likeid" type="text" id="likeid" value="" size="10">
  56. <?php
  57. echo "<select name='likeidsel' id='likeidsel'>\r\n";
  58. $dsql->Execute('s',"Select likeid From `#@__sgpage` group by likeid ");
  59. echo "<option value='default'>default</option>\r\n";
  60. while($arr = $dsql->GetArray('s'))
  61. {
  62. echo "<option value='{$arr['likeid']}'>{$arr['likeid']}</option>\r\n";
  63. }
  64. echo "</select>\r\n";
  65. ?>
  66. <br>
  67. (通过这个标识来识别类同页面,模板中用{dede:likesgpage id='标识'/}调用有相同标识的页面)
  68. </td>
  69. </tr>
  70. <tr>
  71. <td height="26" align="center">文件名:</td>
  72. <td><input name="nfilename" type="text" id="nfilename" value="<?php echo $cfg_arcdir.'/newfile{$nowid}.html'; ?>" size="30">(相对于CMS安装目录)</td>
  73. </tr>
  74. <tr>
  75. <td height="26" align="center">模板文件名:</td>
  76. <td><input name="template" type="text" id="template" value="{style}/singlepage.htm" size="30"></td>
  77. </tr>
  78. <tr>
  79. <td height="26" align="center">是否编译内容:</td>
  80. <td>
  81. <label><input name="ismake" type="radio" value="1">
  82. 含模板标记,要编译</label>
  83. <label><input name="ismake" type="radio" value="0" checked>
  84. 不含模板标记,不需要编译</label>
  85. </td>
  86. </tr>
  87. <tr>
  88. <td height="26" colspan="2">
  89. <div class="alert alert-warning mb-0">内容:模板里用{dede:field name='body'/}来获得</div>
  90. </td>
  91. </tr>
  92. <tr>
  93. <td height=" 80" colspan="2" align="center">
  94. <?php
  95. GetEditor("body","","500","Default","print","false");
  96. ?>
  97. </td>
  98. </tr>
  99. <tr>
  100. <td height="36" colspan="2" align="center">
  101. <button type="submit" name="button1" id="button1" class="btn btn-success">确定</button>
  102. <button type="button" onClick="document.form1.reset();" class="btn btn-success">重置</button>
  103. </td>
  104. </tr>
  105. </form>
  106. </table>
  107. </td>
  108. </tr>
  109. </table>
  110. </body>
  111. </html>