点击这里给我发消息 点击这里给我发消息

建站教程-帝国cms(ecms)后台操作--模板管理--内容模板

添加时间:2013-12-6
    相关阅读: ASP 技术 模板 页面 建站 HTML Dreamweaver

今天的建站教程是制作内容模板,呵呵,相对来说是比较的实用,可要好好的学习哦:

增加内容模板

1、登陆后台->点击大菜单“模板管理”>“管理内容模板”,进入如下界面:

图片1:菜单导航

图片2:管理内容模板页面

2、点击“增加内容模板”按钮后,进入增加内容模板页面,如图:

所属系统模型 指这个内容模板用于的系统模型

时间显示格式 格式化发布时间,如“Y-m-d”就是显示“2008-08-08”

模板内容 内容模板的模板内容

3、内容模板支持的变量:
[!--pagetitle--]:页面标题 [!--newsnav--]:导行条 [!--page.stats--]:统计访问
[!--id--]:信息ID [!--titleurl--]:标题链接 [!--keyboard--]:关键字
[!--classid--]:栏目ID [!--class.name--]:栏目名称 [!--self.classid--]:本栏目ID
[!--class.intro--]:栏目简介 [!--class.keywords--]:栏目关键字 [!--class.classimg--]:栏目缩略图
[!--bclass.id--]: 父栏目ID
[!--bclass.name--]:父栏目名称 [!--other.link--]:相关链接
[!--fava.url--]:加入收藏链接 [!--news.url--]:网站地址(参数设置的站点地址) [!--no.num--]:信息编号
[!--userid--]:发布者ID [!--username--]:发布者 [!--linkusername--]:带链接的用户名
[!--userfen--]:查看信息扣除点数 [!--pinfopfen--]:平均评分 [!--infopfennum--]:评分人数
[!--onclick--]:点击数 [!--totaldown--]:下载数 [!--plnum--]:评论数
[!--page.url--]:分页导行 [!--title.select--]:标题式分页导行 [!--next.page--]:内容下一页链接
[!--info.next--]:下一篇链接 [!--info.pre--]:上一篇链接 [!--info.vote--]:信息投票
[!--hotnews--]:热门信息JS调用(默认表)
[!--self.hotnews--]:本栏目热门信息JS调用 [!--newnews--]:最新信息JS调用(默认表)
[!--self.newnews--]:本栏目最新信息JS调用  [!--goodnews--]:推荐信息JS调用(默认表)
[!--self.goodnews--]:本栏目推荐信息JS调用
[!--hotplnews--]:评论热门信息JS调用(默认表)
[!--self.hotplnews--]:本栏目评论热门信息JS调用 [!--firstnews--]:头条信息JS调用(默认表)
[!--self.firstnews--]:本栏目头条信息JS调用  
[!--字段名--]:数据表字段内容调用 支持公共模板变量 支持所有模板标签

其它JS调用及地址说明
实时显示点击数(不统计) <script src=[!--news.url--]e/public/ViewClick?classid=[!--classid--]&id=[!--id--]></script>
实时显示点击数(显示+统计) <script src=[!--news.url--]e/public/ViewClick?classid=[!--classid--]&id=[!--id--]&addclick=1></script>
实时显示下载数 <script src=[!--news.url--]e/public/ViewClick?classid=[!--classid--]&id=[!--id--]&down=1></script>
实时显示评论数 <script src=[!--news.url--]e/public/ViewClick?classid=[!--classid--]&id=[!--id--]&down=2></script>
实时显示平均评分数 <script src=[!--news.url--]e/public/ViewClick?classid=[!--classid--]&id=[!--id--]&down=3></script>
实时显示评分人数 <script src=[!--news.url--]e/public/ViewClick?classid=[!--classid--]&id=[!--id--]&down=4></script>
实时显示顶数 <script src=[!--news.url--]e/public/ViewClick?classid=[!--classid--]&id=[!--id--]&down=5></script>
购物车地址 [!--news.url--]e/ShopSys/buycar?classid=[!--classid--]&id=[!--id--]


内容模板制作范例

实现如下效果:

1、用Dreamweaver制作好界面

2. 在制作好的界面加入模板变量:  


 
3、将制作好的内容模板代码拷贝到系统后台“内容模板”中:

登陆后台->点击大菜单“模板管理”>“管理内容模板”>点击“增加内容模板”按钮,进入增加内容模板界面,如图:

4、最终内容模板的预览效果

5、附上面例子模板代码:

01.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

02.<html>

03.<head>

04.<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

05.<title>[!--pagetitle--]</title>

06.<style>

07.td {font-size: 10pt;}

08..line{line-height: 14pt;font-size: 10pt;}

09.A:link {text-decoration: none; color:#000000}

10.A:visited {text-decoration: none; color: #000000}

11.A:active {text-decoration: underline; color: #000000 }

12.A:hover {text-decoration: underline;        color: #FF0000;}

13.</style>

14.</head>

15.

16.<body topmargin="0">

17.<table width="700" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CEEEFB">

18.  <tr>

19.    <td height="60">

20.      <div align="center"><font size="6">我的个人技术站点</font></div></td>

21.  </tr>

22.  <tr>

23.    <td height="25" bgcolor="#FFFFFF">

24.      <div align="center"><a href="/">网站首页</a> | <a href="/php">PHP技术</a> | <a href="/asp">ASP技术</a>

25.        | <a href="/jsp">JSP技术</a> | <a href="/net">.NET技术</a></div></td>

26.  </tr>

27.</table>

28.<table width="700" border="0" align="center" cellpadding="0" cellspacing="0">

29.  <tr>

30.    <td width="50%" height="25">当前位置:[!--newsnav--]</td>

31.  </tr>

32.</table>

33.<table width="700" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CEEEFB">

34.  <tr>

35.    <td height="23"><div align="center"><a href="/php"><strong>[!--title--]</strong></a></div></td>

36.  </tr>

37.  <tr>

38.    <td bgcolor="#FFFFFF"><table width="100%" border="0" cellspacing="0" cellpadding="0">

39.        <tr>

40.          <td height="23">[!--newstext--]</td>

41.        </tr>

42.      </table></td>

43.  </tr>

44.</table>

45.<br>

46.<table width="700" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CEEEFB">

47.  <tr>

48.    <td height="23">

49.<div align="center">Powered by <a href="http://www.phome.net">EmpireCMS</a> &copy;

50.        2008-09 Phome.net Corporation<br>

51.      </div></td>

52.  </tr>

53.</table>

54.</body>

55.</html>

咨询热线:020-85648757 85648755 85648616 0755-27912581 客服:020-85648756 0755-27912581 业务传真:020-32579052
广州市网景网络科技有限公司 Copyright◎2003-2008 Veelink.com. All Rights Reserved.
广州商务地址:广东省广州市黄埔大道中203号(海景园区)海景花园C栋501室
= 深圳商务地址:深圳市宝源路华丰宝源大厦606
研发中心:广东广州市天河软件园海景园区 粤ICP备05103322号 工商注册