织梦底部添加版权信息标签代码

简介:

    今天魅力网络在搭建一个网站,用的织梦的数据还原模版的方法,发现搭建完后,在系统设置中改的版权信息在底部不显示,于是看了看foot模版配置,发现没有版权信息这个标签,这时候我们需要手动加上,标签是啥 系统设置里面显示

    添加标签不是直接把标签粘贴上就行了,还需要一个变量

 我复制一下我的标签整个代码,这个是已经加好的

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
< table  width = "1002"  border = "0"  align = "center"  cellpadding = "0"  cellspacing = "0"  bgcolor = "#FFFFFF"  class = "foot" >
   < tr >
     < td  class = "foot" >
     < table  border = "0"  width = "100%"  id = "table1"  cellspacing = "0"  cellpadding = "0" >
         < tr >
             < td  height = "28"  align = "center" >
< center >< div  style = line -height:21px>版权所有:< a  href = http ://www.zgjygy.cn  target = _blank >< font  color = red > 中国家园共育网</ font ></ a >
 
 
< div  class = "footer_left" ></ div >
< div  class = "footer_body" >
< p  class = "powered"
{dede:global.cfg_powerby/} </ div ></ p
<!-- /powered -->
</ div >
< div  class = "footer_right" ></ div >
</ div >
 
 
</ div ></ center >
             </ td >
         </ tr >
< tr >< td >
 
</ td ></ tr >
     </ table >
     </ td >
   </ tr >
</ table >
<!-- /footer -->


我参考的资料也网上别人写的,代码如下

1
2
3
4
5
6
7
8
9
10
11
<!-- //底部模板 -->
< div  class = "footer w960 center mt1 clear" >
 
< div  class = "footer_left" ></ div >
< div  class = "footer_body" >
< p  class = "powered"
{dede:global.cfg_webname/} </ div ></ p
<!-- /powered -->
</ div >
< div  class = "footer_right" ></ div >
</ div >

大家在织梦模版修改的过程中有什么问题,也可以咨询河北魅力网络 QQ1632665886 

参考资料



本文转自 yeybz 51CTO博客,原文链接:http://blog.51cto.com/hmlwl/1892421

相关文章
|
1天前
|
前端开发 小程序
uniapp 将标题背景更换背景图片 完美解决(附加源码+实现效果图)
uniapp 将标题背景更换背景图片 完美解决(附加源码+实现效果图)
5 0
|
2天前
(星星)跟随鼠标移动的效果.html(网上收集3)
(星星)跟随鼠标移动的效果.html(网上收集3)
|
23天前
|
PHP
【ripro美化】moban-child模板子主题原创美化包(适用于各类资源下载站)
RiPro主题版本:8.0 PHP版本要求:7.2 当前版本:V1.4 主题设置:全功能后台设置,无需改代码 主题特色:无需替换RIPRO原主题包任何内容即可实现后台全功能开关修改!!!
11 2
【ripro美化】moban-child模板子主题原创美化包(适用于各类资源下载站)
|
10月前
|
JSON 运维 前端开发
使用bython给我掘金主页自定义个性化页面
使用bython给我掘金主页自定义个性化页面
101 0
使用bython给我掘金主页自定义个性化页面
|
前端开发
掘金Markdown编辑器中的图片怎么居中?
掘金Markdown编辑器中的图片怎么居中?
413 0
SAP Spartacus 页面标题的更改机制 - 谁动了我的页面标题?
SAP Spartacus 页面标题的更改机制 - 谁动了我的页面标题?
SAP Spartacus 页面标题的更改机制 - 谁动了我的页面标题?
|
Web App开发 JavaScript 前端开发
批量导出某个简书用户的所有文章列表和文章超链接
简书改版后,根据文章标题搜索文章的功能就不见了。 虽然简书提供了批量下载文章的功能,但是下载到本地的文章都是markdown格式的,不包含文章的链接,这不满足我的需求。 既然我是程序员,没有这个功能我就自己实现一个。
1017 0
fbh
|
机器学习/深度学习 索引
复制网页内容自动添加版权信息
复制网页内容自动添加版权信息 测试数据test /**/ function setClipboardText(event){ event.preventDefault();//阻止元素发生默认的行为(例如,当点击提交按钮时阻止对表单的提交)。
fbh
835 0
dedecms提取某栏目及子栏目名称到首页怎么弄
  我们建网站时有不同的需求,例如为页面创建一个栏目导航,用dedecms如何提取某栏目及子栏目名称和链接呢?如下图所示,先列出指定的顶级栏目,在下方再列出此栏目的所有子栏目。   之前ytkah说过dedecms调用当前栏目的子栏目怎么操作,我们可不可以发散一下思维进行扩展呢?   先列出...
1060 0