Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[发布] 分享DX2.5 关于我们、网站声明之类整合头部信息的单页模板

[复制链接]
3854335 发表于 2012-11-26 14:04:40 | 显示全部楼层 |阅读模式
本帖最后由 3854335 于 2012-11-26 14:06 编辑

几乎每个网站最下面都会有关于我们、联系我们、广告服务、诚聘英才、网站声明等整合头部信息的单页,而DZ程序目前并不带单页功能,分享下DX2.5整合头部信息单页的制作方法和有DIY功能的普通模板,左边栏模板和右边栏模板。

首先新建一个php文件,代码如下,放于网站根目录下,如shengming.php
  1. <?php
  2. define('CURSCRIPT', 'test');
  3. require './source/class/class_core.php';//引入系统核心文件
  4. $discuz = & discuz_core::instance();//以下代码为创建及初始化对象
  5. $discuz->cachelist = $cachelist;
  6. $discuz->init();
  7. $navtitle = '标题;
  8. $metakeywords = '关键字';
  9. $metadescription = '描述';
  10. loadcache('diytemplatename');//DIY要载入缓存,否则无法保存
  11. include template('diy:portal/name');//调用模版文件name.htm
  12. ?>
复制代码

接着建立一个htm模板文件,放于模板文件夹下的portal文件夹下,如name.htm


普通带DIY模板演示地址:http://www.0512dz.com/shengming.php
  1. <!--{template common/header}-->
  2. <style id="diy_style" type="text/css"></style>
  3. <div id="pt" class="bm cl">
  4. <div class="z">
  5. <a href="./" class="nvhm" title="{lang homepage}">$_G[setting][bbname]</a><em>&raquo;</em>
  6. <a href="./portal.php">$_G[setting][bbname]</a><em>&raquo;</em>
  7. <a href="./shengming.php">$navtitle</a>
  8. </div>
  9. </div>

  10. <P><div class="wp">
  11. </P>
  12. <P><!--[diy=diy1]--><div id="diy1" class="area"></div><!--[/diy]-->
  13. </P>
  14. <P></div>
  15. <div id="ct" class="wp cl">
  16. <div class="mn bm cl">
  17. <div class="bm_c">
  18. 网站声明内容区域
  19. </div>
  20. </div>
  21. </div>
  22. </P>
  23. <P><div class="wp">
  24. </P>
  25. <P><!--[diy=diy2]--><div id="diy2" class="area"></div><!--[/diy]-->
  26. </P>
  27. <P></div>
  28. <!--{template common/footer}--></P>
复制代码

带左边栏可DIY模板演示:
http://www.0512dz.com/zuo.php
  1. <!--{subtemplate common/header}-->
  2. <style id="diy_style" type="text/css"></style>

  3. <div id="pt" class="bm cl">
  4. <div class="z">
  5. <a href="./" class="nvhm" title="{lang homepage}">$_G[setting][bbname]</a><em>&raquo;</em>
  6. <a href="./portal.php">$_G[setting][bbname]</a><em>&raquo;</em>
  7. <a href="./zuo.php">带DIY左边栏演示</a>
  8. </div>
  9. </div>

  10. <div class="wp">
  11. <!--[diy=diy1]--><div id="diy1" class="area"></div><!--[/diy]-->
  12. </div>

  13. <div id="ct" class="wp cl ct2">

  14. <div class="mn bm cl" style="float:right;">
  15. <div class="bm_h"><h2>标题</h2></div>
  16. <div class="bm_c">
  17. 正文内容区域,可自由编辑代码
  18. </div>
  19. </div>

  20. <div class="sd" style="float:left;">

  21. <div class="wp">
  22. <!--[diy=diy2]--><div id="diy2" class="area"></div><!--[/diy]-->
  23. </div>

  24. <div class="bm">
  25. <div class="bm_h">
  26. <h2>栏目一</h2>
  27. </div>
  28. <div class="bm_c">
  29. <p class="xl xl2 cl" style="line-height:25px;">
  30. 栏目一内容
  31. </p>
  32. </div>
  33. </div>

  34. <div class="bm">
  35. <div class="bm_h">
  36. <h2>栏目二</h2>
  37. </div>
  38. <div class="bm_c">
  39. <ul class="xl xl2 cl">
  40. <li><a href="#">自定义内容</a></li>
  41. <li><a href="#">自定义内容</a></li>
  42. <li><a href="#">自定义内容</a></li>
  43. <li><a href="#">自定义内容</a></li>
  44. <li><a href="#">自定义内容</a></li>
  45. <li><a href="#">自定义内容</a></li>
  46. </ul>
  47. </div>
  48. </div>

  49. <div class="bm">
  50. <div class="bm_h">
  51. <h2>关于我们</h2>
  52. </div>
  53. <div class="bm_c" style="line-height:25px;">
  54. <ul>
  55. <li>名称:左边栏演示</li>
  56. <li>网址:<a href="http://www.0512dz.com" target="_blank">www.0512dz.com</a></li>
  57. <li>自定义内容</li>
  58. </ul>
  59. </div>
  60. </div>

  61. </div>

  62. </div>

  63. <div class="wp">
  64. <!--[diy=diy3]--><div id="diy3" class="area"></div><!--[/diy]-->
  65. </div>

  66. <!--{subtemplate common/footer}-->
复制代码

带右边栏可DIY模板演示:
http://www.0512dz.com/you.php
  1. <!--{subtemplate common/header}-->
  2. <style id="diy_style" type="text/css"></style>

  3. <div id="pt" class="bm cl">
  4. <div class="z">
  5. <a href="./" class="nvhm" title="{lang homepage}">$_G[setting][bbname]</a><em>&raquo;</em>
  6. <a href="./portal.php">$_G[setting][bbname]</a><em>&raquo;</em>
  7. <a href="./you.php">带DIY右边栏演示</a>
  8. </div>
  9. </div>

  10. <div class="wp">
  11. <!--[diy=diy1]--><div id="diy1" class="area"></div><!--[/diy]-->
  12. </div>

  13. <div id="ct" class="wp cl ct2">

  14. <div class="mn bm cl">
  15. <div class="bm_h"><h2>标题</h2></div>
  16. <div class="bm_c">
  17. 正文内容区域,可自由编辑代码
  18. </div>
  19. </div>

  20. <div class="sd">

  21. <div class="wp">
  22. <!--[diy=diy2]--><div id="diy2" class="area"></div><!--[/diy]-->
  23. </div>

  24. <div class="bm">
  25. <div class="bm_h">
  26. <h2>栏目一</h2>
  27. </div>
  28. <div class="bm_c">
  29. <p class="xl xl2 cl" style="line-height:25px;">
  30. 栏目一内容
  31. </p>
  32. </div>
  33. </div>

  34. <div class="bm">
  35. <div class="bm_h">
  36. <h2>栏目二</h2>
  37. </div>
  38. <div class="bm_c">
  39. <ul class="xl xl2 cl">
  40. <li><a href="#">自定义内容</a></li>
  41. <li><a href="#">自定义内容</a></li>
  42. <li><a href="#">自定义内容</a></li>
  43. <li><a href="#">自定义内容</a></li>
  44. <li><a href="#">自定义内容</a></li>
  45. <li><a href="#">自定义内容</a></li>
  46. </ul>
  47. </div>
  48. </div>

  49. <div class="bm">
  50. <div class="bm_h">
  51. <h2>关于我们</h2>
  52. </div>
  53. <div class="bm_c" style="line-height:25px;">
  54. <ul>
  55. <li>名称:右边栏演示</li>
  56. <li>网址:<a href="http://www.0512dz.com" target="_blank">www.0512dz.com</a></li>
  57. <li>自定义内容</li>
  58. </ul>
  59. </div>
  60. </div>

  61. </div>

  62. </div>

  63. <div class="wp">
  64. <!--[diy=diy3]--><div id="diy3" class="area"></div><!--[/diy]-->
  65. </div>

  66. <!--{subtemplate common/footer}-->
复制代码

评分

1

查看全部评分

k58k 发表于 2012-11-26 23:58:27 | 显示全部楼层
收下了,不错!也欢迎大家光临:http://www.ggbm.cn 贵港便民网 或登陆 http://bbs.ggbm.cn 贵港便民论坛 聊聊民生,分享生活趣事。
回复

使用道具 举报

 楼主| 3854335 发表于 2012-12-10 21:01:21 | 显示全部楼层
楼上换链接不
回复

使用道具 举报

SSAY 发表于 2012-12-10 21:42:54 | 显示全部楼层
不错!
回复

使用道具 举报

爱学习的小呆 发表于 2012-12-10 21:57:37 | 显示全部楼层
收下了,整的不错 http://www.ijimo.net
回复

使用道具 举报

 楼主| 3854335 发表于 2012-12-18 16:19:50 | 显示全部楼层
回复

使用道具 举报

So请勿从来 发表于 2012-12-19 00:15:21 | 显示全部楼层
首先了!欢迎登陆酒吧门户网:http://www.jiubaw.com
回复

使用道具 举报

wf99536 发表于 2013-1-18 03:16:54 | 显示全部楼层
此贴不成功
回复

使用道具 举报

wuhen76 发表于 2013-1-18 03:40:37 | 显示全部楼层
支持一个  www.jieshouw.com界首网 欢迎你
回复

使用道具 举报

10#
无效楼层,该帖已经被删除
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-9-28 11:22 , Processed in 0.128047 second(s), 21 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表