@@ -1,125 +1,134 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<title>购物车 - {dede:var.carts.orders_id/}订单号</title> | |||||
<meta http-equiv="Content-Type" content="text/html; charset={dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="buycarpage"> | |||||
<?php include(DEDETEMPLATE."/plus/plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"> | |||||
<h2>购物车</h2> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>购物车-{dede:var.carts.orders_id/}订单号</title> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="buycarpage"> | |||||
<?php include(DEDETEMPLATE."/plus/plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"> | |||||
<h2>购物车</h2> | |||||
</div> | |||||
<div id="errorChickCookie" class="clear center mt1" style="font-style:inherit;color:#424b51;font-weight:normal;padding-top:8px;padding-bottom:8px;text-align:center;"> | |||||
</div> | |||||
<div class="buycar"> | |||||
<h3>我的购物车 - <em id="carId">{dede:var.carts.orders_id/}</em>订单号</h3> | |||||
<form id="form1" name="form1" method="post" action="posttocar.php"> | |||||
<input id="dopost" name="do" type="hidden" value="del"> | |||||
<!--startprint1--> | |||||
<table width="100%" cellpadding="0" cellspacing="0" class="table trlist"> | |||||
<thead> | |||||
<tr> | |||||
<td colspan="6">商品列表</td> | |||||
</tr> | |||||
</thead> | |||||
<tbody> | |||||
<!--以下列出购物车内购商品列表(数组),开始遍历数组--> | |||||
<tr> | |||||
<th>选择</th> | |||||
<th>编号</th> | |||||
<th>名称</th> | |||||
<th>数量</th> | |||||
<th>单价(元)</th> | |||||
<th>操作</th> | |||||
</tr> | |||||
{dede:array.Items} | |||||
<tr> | |||||
<td height="26"><input type="checkbox" name="ids[]" value="{dede:value.id/}"></td> | |||||
<td height="26">{dede:value.id/}</td> | |||||
<td height="26"><a href="view.php?aid={dede:value.id/}" target="_bank">{dede:value.title/}</a></td> | |||||
<td height="26"> | |||||
<input name="buynum{dede:value.id/}" type="text" id="buynum{dede:value.id/}" value="{dede:value.buynum/}" size="5" maxlength="5" class="ipt-txt"> | |||||
<small>{dede:value.units/}</small> | |||||
</td> | |||||
<td height="26">{dede:value.price/}</td> | |||||
<td height="26"><a href="posttocar.php?do=del&ids={dede:value.id/}">删除</a></td> | |||||
</tr> | |||||
{/dede:array} | |||||
<!--构造购物车内商品列表结束--> | |||||
</tbody> | |||||
<tfoot> | |||||
<tr> | |||||
<td colspan="6" align="right"> | |||||
<div style="float:left">共 <span class="text-danger">{dede:var.carts.cart_count/}</span> 件商品,合计: <span class='text-danger'>{dede:var.carts.price_count/}</span> 元</div> | |||||
<div style="float:right"> | |||||
<!--<input type="button" value="打印购物车" class="btn-2" onclick="printPage(1)"/>--> | |||||
<input type="button" value="更新订单号" class="btn btn-success btn-sm" onClick="makeCarId()"> | |||||
<input type="button" value="删除已选定" class="btn btn-success btn-sm" onClick="DelPost()"> | |||||
<input type="button" value="清空" onClick="if(confirm('确定清空购物车中的商品吗')){ location='posttocar.php?do=clear' }" class="btn btn-success btn-sm"> | |||||
<input onclick="ChangePost()" type="button" value="更新数量" class="btn btn-success btn-sm"> | |||||
<input type="button" value="下一步" onclick="location='carbuyaction.php'" class="btn btn-success btn-sm"> | |||||
</div> | |||||
</td> | |||||
</tr> | |||||
</tfoot> | |||||
</table> | |||||
<!--endprint1--> | |||||
</form> | |||||
</div> | |||||
</div> | </div> | ||||
<div id="errorChickCookie" class="clear center mt1" style="font-style:inherit;color:#424b51;font-weight:normal;padding-top:8px;padding-bottom:8px;text-align:center;"> | |||||
</div> | |||||
<div class="buycar"> | |||||
<h3>我的购物车 - <em id="carId">{dede:var.carts.orders_id/}</em>订单号</h3> | |||||
<form id="form1" name="form1" method="post" action="posttocar.php"> | |||||
<input id="dopost" name="do" type="hidden" value="del"> | |||||
<!--startprint1--> | |||||
<table width="100%" cellpadding="0" cellspacing="0" class="table trlist"> | |||||
<thead> | |||||
<tr> | |||||
<td colspan="6">商品列表</td> | |||||
</tr> | |||||
</thead> | |||||
<tbody> | |||||
<!--以下列出购物车内购商品列表(数组),开始遍历数组--> | |||||
<tr> | |||||
<th>选择</th> | |||||
<th>编号</th> | |||||
<th>名称</th> | |||||
<th>数量</th> | |||||
<th>单价(元)</th> | |||||
<th>操作</th> | |||||
</tr> | |||||
{dede:array.Items} | |||||
<tr> | |||||
<td height="26"><input type="checkbox" name="ids[]" value="{dede:value.id/}"></td> | |||||
<td height="26">{dede:value.id/}</td> | |||||
<td height="26"><a href="view.php?aid={dede:value.id/}" target="_bank">{dede:value.title/}</a></td> | |||||
<td height="26"> | |||||
<input name="buynum{dede:value.id/}" type="text" id="buynum{dede:value.id/}" value="{dede:value.buynum/}" size="5" maxlength="5" class="ipt-txt"> | |||||
<small>{dede:value.units/}</small></td> | |||||
<td height="26">{dede:value.price/}</td> | |||||
<td height="26"><a href="posttocar.php?do=del&ids={dede:value.id/}">删除</a></td> | |||||
</tr> | |||||
{/dede:array} | |||||
<!--构造购物车内商品列表结束--> | |||||
</tbody> | |||||
<tfoot> | |||||
<tr> | |||||
<td colspan="6" align="right"> | |||||
<div style="float:left">共 <span class="text-danger">{dede:var.carts.cart_count/}</span> 件商品,合计: <span class='text-danger'>{dede:var.carts.price_count/}</span> 元</div> | |||||
<div style="float:right"> | |||||
<!--<input type="button" value="打印购物车" class="btn-2" onclick="printPage(1)"/>--> | |||||
<input type="button" value="更新订单号" class="btn btn-success btn-sm" onClick="makeCarId()"> | |||||
<input type="button" value="删除已选定" class="btn btn-success btn-sm" onClick="DelPost()"> | |||||
<input type="button" value="清空" onClick="if(confirm('确定清空购物车中的商品吗')){ location='posttocar.php?do=clear' }" class="btn btn-success btn-sm"> | |||||
<input onclick="ChangePost()" type="button" value="更新数量" class="btn btn-success btn-sm"> | |||||
<input type="button" value="下一步" onclick="location='carbuyaction.php'" class="btn btn-success btn-sm"> | |||||
</div> | |||||
</td> | |||||
</tr> | |||||
</tfoot> | |||||
</table> | |||||
<!--endprint1--> | |||||
</form> | |||||
</div> | |||||
</div> | |||||
<!--购物车列表操作javascript请不要随意改动--> | |||||
<script language="JavaScript" type="text/javascript"> | |||||
//遍历checkbox使之全选中,或反选 | |||||
function CheckAll() { | |||||
for (var i = 0; i < document.form1.elements.length; i++) { | |||||
var e = document.form1.elements[i]; | |||||
e.checked == true ? e.checked = false : e.checked = true; | |||||
<!--购物车列表操作javascript请不要随意改动--> | |||||
<script language="JavaScript" type="text/javascript"> | |||||
//遍历checkbox使之全选中,或反选 | |||||
function CheckAll() { | |||||
for (var i = 0; i < document.form1.elements.length; i++) { | |||||
var e = document.form1.elements[i]; | |||||
e.checked == true ? e.checked = false : e.checked = true; | |||||
} | |||||
} | |||||
//改变表单dopost值为:update,后submit提交表单 | |||||
function ChangePost() { | |||||
CheckAll(); | |||||
document.getElementById("dopost").value = 'update'; | |||||
document.form1.submit(); | |||||
} | |||||
//改变表单dopost值为:del,后submit提交表单 | |||||
function DelPost() { | |||||
document.getElementById("dopost").value = 'del'; | |||||
document.form1.submit(); | |||||
} | |||||
//AJAX产生一个新的订单编号 | |||||
function makeCarId() { | |||||
$.ajax({ | |||||
type: "POST", | |||||
url: "car.php", | |||||
data: "dopost=makeid", | |||||
dataType: 'text', | |||||
success: function(result) { | |||||
$("#carId").html(result); | |||||
} | |||||
}); | |||||
} | |||||
//Print Page | |||||
function printPage(oper) { | |||||
if (oper < 10) { | |||||
bdhtml = window.document.body.innerHTML; //获取当前页的html代码 | |||||
sprnstr = "<!--startprint" + oper + "-->"; //设置打印开始区域 | |||||
eprnstr = "<!--endprint" + oper + "-->"; //设置打印结束区域 | |||||
prnhtml = bdhtml.substring(bdhtml.indexOf(sprnstr) + 18); //从开始代码向后取html | |||||
prnhtml = prnhtml.substring(0, prnhtml.indexOf(eprnstr)); //从结束代码向前取html | |||||
window.document.body.innerHTML = prnhtml; | |||||
window.print(); | |||||
window.document.body.innerHTML = bdhtml; | |||||
} else { | |||||
window.print(); | |||||
} | |||||
} | } | ||||
} | |||||
//改变表单dopost值为:update,后submit提交表单 | |||||
function ChangePost() { | |||||
CheckAll(); | |||||
document.getElementById("dopost").value = 'update'; | |||||
document.form1.submit(); | |||||
} | |||||
//改变表单dopost值为:del,后submit提交表单 | |||||
function DelPost() { | |||||
document.getElementById("dopost").value = 'del'; | |||||
document.form1.submit(); | |||||
} | |||||
//AJAX产生一个新的订单编号 | |||||
function makeCarId() { | |||||
$.ajax({ type: "POST", url: "car.php", data: "dopost=makeid", dataType: 'text', success: function (result) { $("#carId").html(result); } }); | |||||
} | |||||
//Print Page | |||||
function printPage(oper) { | |||||
if (oper < 10) { | |||||
bdhtml = window.document.body.innerHTML;//获取当前页的html代码 | |||||
sprnstr = "<!--startprint" + oper + "-->";//设置打印开始区域 | |||||
eprnstr = "<!--endprint" + oper + "-->";//设置打印结束区域 | |||||
prnhtml = bdhtml.substring(bdhtml.indexOf(sprnstr) + 18); //从开始代码向后取html | |||||
prnhtml = prnhtml.substring(0, prnhtml.indexOf(eprnstr));//从结束代码向前取html | |||||
window.document.body.innerHTML = prnhtml; | |||||
window.print(); | |||||
window.document.body.innerHTML = bdhtml; | |||||
} else { | |||||
window.print(); | |||||
</script> | |||||
<!--购物车列表操作javascript结束--> | |||||
<?php include(DEDETEMPLATE."/plus/plus_footer.htm") ;?> | |||||
<script language="JavaScript" type="text/javascript"> | |||||
if (!navigator.cookieEnabled) { | |||||
$('#errorChickCookie').html('您浏览器的 cookie 功能被禁用,请启用此功能'); | |||||
$('.buycar').hide(); | |||||
} | } | ||||
} | |||||
</script> | |||||
<!--购物车列表操作javascript结束--> | |||||
<?php include(DEDETEMPLATE."/plus/plus_footer.htm") ;?> | |||||
<script language="JavaScript" type="text/javascript"> | |||||
if (!navigator.cookieEnabled) { | |||||
$('#errorChickCookie').html('您浏览器的 cookie 功能被禁用,请启用此功能'); | |||||
$('.buycar').hide(); | |||||
} | |||||
</script> | |||||
</body> | |||||
</html> | |||||
</script> | |||||
</body> | |||||
</html> |
@@ -1,175 +1,187 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<title>购物车 - 下单购买{dede:var.carts.orders_id/}</title> | |||||
<meta http-equiv="Content-Type" content="text/html; charset={dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="buycarpage"> | |||||
<?php include(DEDETEMPLATE."/plus/plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"> | |||||
<h3>商品购买</h3> | |||||
</div> | |||||
<div class="buycar"> | |||||
<?php if(!$cfg_ml->IsLogin()){ ?> | |||||
<table cellpadding="0" cellspacing="0" class="table"> | |||||
<tr> | |||||
<td style="color:#F00">您好,欢迎来到本网站,请 <a href="../user/login.php?gourl=<?php echo urlencode(GetCurUrl());?>">登录</a> 或 <a href="../user/index_do.php?fmdo=user&dopost=regnew">注册</a></td> | |||||
</tr> | |||||
</table> | |||||
<?php }?> | |||||
<form id="fixupformid" name="fixupform" action="carbuyaction.php" method="post"> | |||||
<input name="do" type="hidden" value="clickout"> | |||||
<table cellpadding="0" cellspacing="0" class="table"> | |||||
<tr> | |||||
<td class="thisclass">下单购买</td> | |||||
<td>买家付款</td> | |||||
<td>确认收货</td> | |||||
<td>交易结束 </td> | |||||
</tr> | |||||
</table> | |||||
<table width="100%" cellpadding="0" cellspacing="0" class="table"> | |||||
<thead> | |||||
<tr> | |||||
<td colspan="6">确认订单信息</td> | |||||
</tr> | |||||
</thead> | |||||
<tbody> | |||||
<tr> | |||||
<td width="180" class="td1">订单编号</td> | |||||
<td>{dede:var.carts.orders_id/}</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">订单价格</td> | |||||
<td><strong class="fc-f60" id="priceCount">{dede:var.carts.price_count/} 元</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">商品总数</td> | |||||
<td>{dede:var.carts.cart_count/}件</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">状态</td> | |||||
<td>下单</td> | |||||
</tr> | |||||
</tbody> | |||||
</table> | |||||
<table width="100%" cellpadding="0" cellspacing="0" class="table"> | |||||
<thead> | |||||
<tr> | |||||
<td colspan="6">配送方式</td> | |||||
</tr> | |||||
</thead> | |||||
<tbody> | |||||
{dede:array.shops_deliveryarr} | |||||
<tr> | |||||
<td width="10%" class="td1"><input type="radio" name="pid" value="{dede:value.pid/}"></td> | |||||
<td width="90%"> | |||||
<p>{dede:value.dname/} <span class="fc-f90">手续费:{dede:value.price/}元</span> | |||||
<small>{dede:value.des/}.</small> </p> | |||||
</td> | |||||
</tr> | |||||
{/dede:array} | |||||
</tbody> | |||||
</table> | |||||
<table width="100%" cellpadding="0" cellspacing="0" class="table"> | |||||
<thead> | |||||
<tr> | |||||
<td colspan="8">支付方式</td> | |||||
</tr> | |||||
</thead> | |||||
<tbody> | |||||
<tr> | |||||
<td class="td1"></td> | |||||
<td align="center" valign="middle" style="vertical-align:middle;">名称</td> | |||||
<td align="center">描述</td> | |||||
<td align="center">手续费</td> | |||||
</tr> | |||||
{dede:array.shops_paymentarr} | |||||
<tr onMouseMove="javascript:this.bgColor='#f8f8f8';" onMouseOut="javascript:this.bgColor='#ffffff';"> | |||||
<td width="10%" align="right" style="vertical-align:middle;"><input name="paytype" type="radio" value="{dede:value.id/}"></td> | |||||
<td width="20%" valign="middle" style="vertical-align:middle;"> {dede:value.name/} </td> | |||||
<td width="60%"> {dede:value.description/} </td> | |||||
<td width="10%" align="center"> <span class="fc-f60">{dede:value.fee/}元</span></td> | |||||
</tr> | |||||
{/dede:array} | |||||
</tbody> | |||||
</table> | |||||
<table width="100%" cellpadding="0" cellspacing="0" class="table"> | |||||
<thead> | |||||
<tr> | |||||
<td colspan="6">确认订单信息</td> | |||||
</tr> | |||||
</thead> | |||||
<tbody> | |||||
<tr> | |||||
<td width="180" class="td1">街道地址</td> | |||||
<td><input name="address" id="address" type="text" class="ipt-txt" size="50"> | |||||
<span class="red">*</span><small>请填写街道地址,不能为空!</small></td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">收货人</td> | |||||
<td><input name="postname" id="postname" type="text" class="ipt-txt" size="20"> | |||||
<span class="red">*</span><small>请填写收货人姓名</small></td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">E-Mail</td> | |||||
<td><input name="email" id="email" type="text" class="ipt-txt" size="30"> | |||||
<small>可选,联系您的电子邮箱</small></td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">手机/电话</td> | |||||
<td><input name="tel" id="tel" type="text" class="ipt-txt" size="30"> | |||||
<span class="red">*</span><small>请填写可以联系到您的电话</small></td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">邮编</td> | |||||
<td><input name="zip" id="zip" type="text" class="ipt-txt" size="30"> | |||||
<span class="red">*</span><small>请填写格式如:300030</small></td> | |||||
</tr> | |||||
</tbody> | |||||
</table> | |||||
<table width="100%" cellpadding="0" cellspacing="0" class="table"> | |||||
<thead> | |||||
<tr> | |||||
<td colspan="6">确认订单信息</td> | |||||
</tr> | |||||
</thead> | |||||
<tbody> | |||||
<tr> | |||||
<td width="180" class="td1">购买留言</td> | |||||
<td><textarea name="des" id="des" cols="50" rows="5" class="ipt-txt"></textarea> | |||||
<p><small>请在购买留言中填写您对商品的特殊要求,如“我要红色的小码”(100个字以内)</small></p> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">验证码</td> | |||||
<td><a name="mate_vdimgck"> | |||||
<input name="vdcode" id="vdcode" type="text" class="ipt-txt" size="10" | |||||
style="text-transform:uppercase"> | |||||
<a href="#mate_vdimgck"><img id="vdimgck_img" src="../apps/vdimgck.php" hspace="6" align="absmiddle" onClick="vdimgck();" title="看不清换一张"></a> <a href="#mate_vdimgck" onClick="vdimgck();">看不清换一张</a> | |||||
</td> | |||||
</tr> | |||||
</tbody> | |||||
<tfoot> | |||||
<tr> | |||||
<td colspan="2"><button type="submit" class="btn btn-success btn-sm">确认下单</button></td> | |||||
</tr> | |||||
</tfoot> | |||||
</table> | |||||
</form> | |||||
</div> | |||||
</div> | |||||
<script language="JavaScript" type="text/javascript"> | |||||
function vdimgck() { | |||||
document.getElementById("vdimgck_img").src = '../apps/vdimgck.php?' + Math.random(); | |||||
} | |||||
</script> | |||||
<?php include(DEDETEMPLATE."/plus/plus_footer.htm") ;?> | |||||
</body> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>购物车-下单购买{dede:var.carts.orders_id/}</title> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="buycarpage"> | |||||
<?php include(DEDETEMPLATE."/plus/plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"> | |||||
<h3>商品购买</h3> | |||||
</div> | |||||
<div class="buycar"> | |||||
<?php if(!$cfg_ml->IsLogin()){ ?> | |||||
<table cellpadding="0" cellspacing="0" class="table"> | |||||
<tr> | |||||
<td style="color:#F00">您好,欢迎来到本网站,请 <a href="../user/login.php?gourl=<?php echo urlencode(GetCurUrl());?>">登录</a> 或 <a href="../user/index_do.php?fmdo=user&dopost=regnew">注册</a></td> | |||||
</tr> | |||||
</table> | |||||
<?php }?> | |||||
<form id="fixupformid" name="fixupform" action="carbuyaction.php" method="post"> | |||||
<input name="do" type="hidden" value="clickout"> | |||||
<table cellpadding="0" cellspacing="0" class="table"> | |||||
<tr> | |||||
<td class="thisclass">下单购买</td> | |||||
<td>买家付款</td> | |||||
<td>确认收货</td> | |||||
<td>交易结束 </td> | |||||
</tr> | |||||
</table> | |||||
<table width="100%" cellpadding="0" cellspacing="0" class="table"> | |||||
<thead> | |||||
<tr> | |||||
<td colspan="6">确认订单信息</td> | |||||
</tr> | |||||
</thead> | |||||
<tbody> | |||||
<tr> | |||||
<td width="180" class="td1">订单编号</td> | |||||
<td>{dede:var.carts.orders_id/}</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">订单价格</td> | |||||
<td><strong class="fc-f60" id="priceCount">{dede:var.carts.price_count/} 元</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">商品总数</td> | |||||
<td>{dede:var.carts.cart_count/}件</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">状态</td> | |||||
<td>下单</td> | |||||
</tr> | |||||
</tbody> | |||||
</table> | |||||
<table width="100%" cellpadding="0" cellspacing="0" class="table"> | |||||
<thead> | |||||
<tr> | |||||
<td colspan="6">配送方式</td> | |||||
</tr> | |||||
</thead> | |||||
<tbody> | |||||
{dede:array.shops_deliveryarr} | |||||
<tr> | |||||
<td width="10%" class="td1"><input type="radio" name="pid" value="{dede:value.pid/}"> | |||||
</td> | |||||
<td width="90%"> | |||||
<p>{dede:value.dname/} <span class="fc-f90">手续费:{dede:value.price/}元</span> | |||||
<small>{dede:value.des/}.</small> | |||||
</p> | |||||
</td> | |||||
</tr> | |||||
{/dede:array} | |||||
</tbody> | |||||
</table> | |||||
<table width="100%" cellpadding="0" cellspacing="0" class="table"> | |||||
<thead> | |||||
<tr> | |||||
<td colspan="8">支付方式</td> | |||||
</tr> | |||||
</thead> | |||||
<tbody> | |||||
<tr> | |||||
<td class="td1"></td> | |||||
<td align="center" valign="middle" style="vertical-align:middle;">名称</td> | |||||
<td align="center">描述</td> | |||||
<td align="center">手续费</td> | |||||
</tr> | |||||
{dede:array.shops_paymentarr} | |||||
<tr onMouseMove="javascript:this.bgColor='#f8f8f8';" onMouseOut="javascript:this.bgColor='#ffffff';"> | |||||
<td width="10%" align="right" style="vertical-align:middle;"><input name="paytype" type="radio" value="{dede:value.id/}"></td> | |||||
<td width="20%" valign="middle" style="vertical-align:middle;"> {dede:value.name/} </td> | |||||
<td width="60%"> {dede:value.description/} </td> | |||||
<td width="10%" align="center"> <span class="fc-f60">{dede:value.fee/}元</span></td> | |||||
</tr> | |||||
{/dede:array} | |||||
</tbody> | |||||
</table> | |||||
<table width="100%" cellpadding="0" cellspacing="0" class="table"> | |||||
<thead> | |||||
<tr> | |||||
<td colspan="6">确认订单信息</td> | |||||
</tr> | |||||
</thead> | |||||
<tbody> | |||||
<tr> | |||||
<td width="180" class="td1">街道地址</td> | |||||
<td> | |||||
<input name="address" id="address" type="text" class="ipt-txt" size="50"> | |||||
<span class="red">*</span> | |||||
<small>请填写街道地址,不能为空!</small> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">收货人</td> | |||||
<td> | |||||
<input name="postname" id="postname" type="text" class="ipt-txt" size="20"> | |||||
<span class="red">*</span><small>请填写收货人姓名</small> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">E-Mail</td> | |||||
<td> | |||||
<input name="email" id="email" type="text" class="ipt-txt" size="30"> | |||||
<small>可选,联系您的电子邮箱</small> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">手机/电话</td> | |||||
<td><input name="tel" id="tel" type="text" class="ipt-txt" size="30"> | |||||
<span class="red">*</span><small>请填写可以联系到您的电话</small> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">邮编</td> | |||||
<td> | |||||
<input name="zip" id="zip" type="text" class="ipt-txt" size="30"> | |||||
<span class="red">*</span><small>请填写格式如:300030</small> | |||||
</td> | |||||
</tr> | |||||
</tbody> | |||||
</table> | |||||
<table width="100%" cellpadding="0" cellspacing="0" class="table"> | |||||
<thead> | |||||
<tr> | |||||
<td colspan="6">确认订单信息</td> | |||||
</tr> | |||||
</thead> | |||||
<tbody> | |||||
<tr> | |||||
<td width="180" class="td1">购买留言</td> | |||||
<td> | |||||
<textarea name="des" id="des" cols="50" rows="5" class="ipt-txt"></textarea> | |||||
<p><small>请在购买留言中填写您对商品的特殊要求,如“我要红色的小码”(100个字以内)</small></p> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">验证码</td> | |||||
<td> | |||||
<input name="validate" type="text" id="vdcode2" size="10" class="ipt-txt" style="text-transform: uppercase;"> | |||||
<img src="../apps/vdimgck.php" style="cursor:pointer" onclick="this.src=this.src+'?'" title="点击我更换图片" alt="点击我更换图片"> | |||||
</td> | |||||
</tr> | |||||
</tbody> | |||||
<tfoot> | |||||
<tr> | |||||
<td colspan="2"><button type="submit" class="btn btn-success btn-sm">确认下单</button></td> | |||||
</tr> | |||||
</tfoot> | |||||
</table> | |||||
</form> | |||||
</div> | |||||
</div> | |||||
<script language="JavaScript" type="text/javascript"> | |||||
function vdimgck() { | |||||
document.getElementById("vdimgck_img").src = '../apps/vdimgck.php?' + Math.random(); | |||||
} | |||||
</script> | |||||
<?php include(DEDETEMPLATE."/plus/plus_footer.htm") ;?> | |||||
</body> | |||||
</html> | </html> |
@@ -1,38 +1,39 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||||
<title><?php echo $title; ?>_下载地址列表_<?php echo $cfg_webname;?></title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
<style> | |||||
.formbox li{ | |||||
list-style: url(none) none; | |||||
} | |||||
</style> | |||||
</head> | |||||
<body> | |||||
<?php include("plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"> | |||||
<h2>软件名称:<a href='<?php echo $arcurl; ?>'><?php echo $title; ?></a></h2> | |||||
</div> | |||||
<div class="formbox"> | |||||
<table width="100%" align="center" cellspacing="2" class="table"> | |||||
<tr> | |||||
<td height="26" bgcolor="#F2F7E6">下载地址列表:</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="78"><?php echo $downlinks; ?></td> | |||||
</tr> | |||||
</table> | |||||
</div> | |||||
</div> | |||||
<div class="advancedsearch"> </div> | |||||
<?php include("plus_footer.htm") ;?> | |||||
</body> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title><?php echo $title; ?>-下载地址列表-<?php echo $cfg_webname;?></title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
<style> | |||||
.formbox li { | |||||
list-style: url(none) none; | |||||
} | |||||
</style> | |||||
</head> | |||||
<body> | |||||
<?php include("plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"> | |||||
<h2>软件名称:<a href='<?php echo $arcurl; ?>'><?php echo $title; ?></a></h2> | |||||
</div> | |||||
<div class="formbox"> | |||||
<table width="100%" align="center" cellspacing="2" class="table"> | |||||
<tr> | |||||
<td height="26" bgcolor="#F2F7E6">下载地址列表:</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="78"><?php echo $downlinks; ?></td> | |||||
</tr> | |||||
</table> | |||||
</div> | |||||
</div> | |||||
<div class="advancedsearch"></div> | |||||
<?php include("plus_footer.htm") ;?> | |||||
</body> | |||||
</html> | </html> |
@@ -1,82 +1,89 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||||
<title><?php echo $cfg_webname;?>_申请友情链接</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="flinkpage"> | |||||
<?php include("plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"> | |||||
<nav class="navbar navbar-expand-lg"> | |||||
<ul class="navbar-nav mr-auto mt-2"> | |||||
<li class="nav-item"> | |||||
<h3>申请链接</h3> | |||||
</li> | |||||
</ul> | |||||
<span class="navbar-text"> | |||||
<a href="<?php echo '$cfg_phpurl/flink.php'; ?>" class="btn btn-success btn-sm">查看链接</a> | |||||
</span> | |||||
</nav> | |||||
</div> | |||||
<div class="formbox"> | |||||
<form name="form1" method="post" action="flink.php"> | |||||
<input type='hidden' name='dopost' value='save'> | |||||
<table width="100%" cellspacing="1" cellpadding="3" class="table"> | |||||
<tr> | |||||
<td height="26">网址:</td> | |||||
<td><input name="url" type="text" id="url" value="http://" size="30" class="ipt-txt"></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26">网站名称:</td> | |||||
<td><input name="webname" type="text" id="webname" size="30" class="ipt-txt"></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26">网站Logo:</td> | |||||
<td><input name="logo" type="text" id="logo" size="30" class="ipt-txt">(88*31 gif或jpg)</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26">网站简况:</td> | |||||
<td><textarea name="msg" cols="40" rows="4" id="msg" class="ipt-txt"></textarea></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26">站长Email:</td> | |||||
<td><input name="email" type="text" id="email" size="30" class="ipt-txt"></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26">网站类型:</td> | |||||
<td> <select name="typeid" id="typeid" > | |||||
<?php | |||||
$dsql->SetQuery("select * from #@__flinktype"); | |||||
$dsql->Execute(); | |||||
while($row=$dsql->GetObject()) | |||||
{ | |||||
echo " <option value='".$row->id."'>".$row->typename."</option>"; | |||||
} | |||||
?> | |||||
</select> </td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26">验证码:</td> | |||||
<td><input name="validate" type="text" id="vdcode2" size="10" class="ipt-txt" style="text-transform: uppercase;"><img src='../apps/vdimgck.php' style="cursor:pointer" onclick="this.src=this.src+'?'" title="点击我更换图片" alt="点击我更换图片"></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="51"></td> | |||||
<td> | |||||
<button type="submit" name="Submit" class="btn btn-success btn-sm"> 提 交 </button> | |||||
<button type="reset" name="Submit" class="btn btn-success btn-sm"> 重 置 </button> </td> | |||||
</tr> | |||||
</table> | |||||
</form> | |||||
</div> | |||||
</div> | |||||
<?php include("plus_footer.htm") ;?> | |||||
</body> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<title><?php echo $cfg_webname;?>-申请友情链接</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="flinkpage"> | |||||
<?php include("plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"> | |||||
<nav class="navbar navbar-expand-lg"> | |||||
<ul class="navbar-nav mr-auto mt-2"> | |||||
<li class="nav-item"> | |||||
<h3>申请链接</h3> | |||||
</li> | |||||
</ul> | |||||
<span class="navbar-text"> | |||||
<a href="<?php echo '$cfg_phpurl/flink.php'; ?>" class="btn btn-success btn-sm">查看链接</a> | |||||
</span> | |||||
</nav> | |||||
</div> | |||||
<div class="formbox"> | |||||
<form name="form1" method="post" action="flink.php"> | |||||
<input type='hidden' name='dopost' value='save'> | |||||
<table width="100%" cellspacing="1" cellpadding="3" class="table"> | |||||
<tr> | |||||
<td height="26">网址:</td> | |||||
<td><input name="url" type="text" id="url" value="http://" size="30" class="ipt-txt"></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26">网站名称:</td> | |||||
<td><input name="webname" type="text" id="webname" size="30" class="ipt-txt"></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26">网站Logo:</td> | |||||
<td><input name="logo" type="text" id="logo" size="30" class="ipt-txt">(88*31 gif或jpg)</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26">网站简况:</td> | |||||
<td><textarea name="msg" cols="40" rows="4" id="msg" class="ipt-txt"></textarea></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26">站长Email:</td> | |||||
<td><input name="email" type="text" id="email" size="30" class="ipt-txt"></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26">网站类型:</td> | |||||
<td> | |||||
<select name="typeid" id="typeid"> | |||||
<?php | |||||
$dsql->SetQuery("select * from #@__flinktype"); | |||||
$dsql->Execute(); | |||||
while($row=$dsql->GetObject()) | |||||
{ | |||||
echo " <option value='".$row->id."'>".$row->typename."</option>"; | |||||
} | |||||
?> | |||||
</select> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26">验证码:</td> | |||||
<td> | |||||
<input name="validate" type="text" id="vdcode2" size="10" class="ipt-txt" style="text-transform: uppercase;"> | |||||
<img src="../apps/vdimgck.php" style="cursor:pointer" onclick="this.src=this.src+'?'" title="点击我更换图片" alt="点击我更换图片"> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="36"></td> | |||||
<td> | |||||
<button type="submit" name="Submit" class="btn btn-success btn-sm">提交</button> | |||||
<button type="reset" name="Submit" class="btn btn-success btn-sm">重置</button> | |||||
</td> | |||||
</tr> | |||||
</table> | |||||
</form> | |||||
</div> | |||||
</div> | |||||
<?php include("plus_footer.htm") ;?> | |||||
</body> | |||||
</html> | </html> |
@@ -1,56 +1,56 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||||
<title><?php echo $cfg_webname;?>_所有链接</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="flinkpage"> | |||||
<?php include("plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"> | |||||
<nav class="navbar navbar-expand-lg"> | |||||
<ul class="navbar-nav mr-auto mt-2"> | |||||
<li class="nav-item"> | |||||
<h3>友情链接</h3> | |||||
</li> | |||||
</ul> | |||||
<span class="navbar-text"> | |||||
<a href="flink_add.php" class="btn btn-success btn-sm">申请链接</a> | |||||
</span> | |||||
</nav> | |||||
</div> | |||||
<div class="flinkbox"> | |||||
<ul class="f5"> | |||||
<?php | |||||
$row = 180; | |||||
$titlelen = 50; | |||||
$dsql->SetQuery("Select * from `#@__flink` where ischeck>0 order by sortrank asc"); | |||||
$dsql->Execute(); | |||||
$revalue = ""; | |||||
for($i=1;$i<=$row;$i++) | |||||
{ | |||||
if($dbrow=$dsql->GetObject()) | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title><?php echo $cfg_webname;?>-所有链接</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="flinkpage"> | |||||
<?php include("plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"> | |||||
<nav class="navbar navbar-expand-lg"> | |||||
<ul class="navbar-nav mr-auto mt-2"> | |||||
<li class="nav-item"> | |||||
<h3>友情链接</h3> | |||||
</li> | |||||
</ul> | |||||
<span class="navbar-text"> | |||||
<a href="flink_add.php" class="btn btn-success btn-sm">申请链接</a> | |||||
</span> | |||||
</nav> | |||||
</div> | |||||
<div class="flinkbox"> | |||||
<ul class="f5"> | |||||
<?php | |||||
$row = 180; | |||||
$titlelen = 50; | |||||
$dsql->SetQuery("Select * from `#@__flink` where ischeck>0 order by sortrank asc"); | |||||
$dsql->Execute(); | |||||
$revalue = ""; | |||||
for($i=1;$i<=$row;$i++) | |||||
{ | { | ||||
$wtitle = cn_substr($dbrow->webname,$titlelen); | |||||
if($dbrow->logo=="") | |||||
if($dbrow=$dsql->GetObject()) | |||||
{ | |||||
$wtitle = cn_substr($dbrow->webname,$titlelen); | |||||
if($dbrow->logo=="") | |||||
$revalue.= "<li><a href='".$dbrow->url."' target='_blank'>$wtitle</a></li>"; | $revalue.= "<li><a href='".$dbrow->url."' target='_blank'>$wtitle</a></li>"; | ||||
else | else | ||||
$revalue.= "<li><a href='".$dbrow->url."' target='_blank'><img src='".$dbrow->logo."' width='88' height='26' alt='$wtitle'></a></li>"; | $revalue.= "<li><a href='".$dbrow->url."' target='_blank'><img src='".$dbrow->logo."' width='88' height='26' alt='$wtitle'></a></li>"; | ||||
} | |||||
if(!$dbrow) break; | |||||
} | } | ||||
if(!$dbrow) break; | |||||
} | |||||
echo $revalue; | |||||
?> | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
<?php include("plus_footer.htm") ;?> | |||||
</body> | |||||
</html> | |||||
echo $revalue; | |||||
?> | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
<?php include("plus_footer.htm") ;?> | |||||
</body> | |||||
</html> |
@@ -1,108 +1,109 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||||
<title><?php echo $cfg_webname;?>_高级搜索</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
</head> | |||||
<body class="flinkpage"> | |||||
<?php include("plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="formbox mt-3"> | |||||
<table width="100%" cellpadding="0" cellspacing="0" bgcolor="#cccccc" class='table'> | |||||
<form name="form1" action="search.php" method="get"> | |||||
<tr> | |||||
<td height="26" align="center" width="20%">网站栏目:</td> | |||||
<td height="26"> | |||||
<?php | |||||
$tl = new TypeLink(0); | |||||
$typeOptions = $tl->GetOptionArray(0,0,0); | |||||
echo "<select name='typeid' style='width:260px' class='form-control'>"; | |||||
echo "<option value='0' selected>不限栏目</option>"; | |||||
echo $typeOptions; | |||||
echo "</select>"; | |||||
?> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">关 键 字:</td> | |||||
<td width="490" height="26"><input name="q" type="text" id="q" class="form-control"></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">发布时间:</td> | |||||
<td height="26"> | |||||
<select name="starttime" id="starttime"> | |||||
<option value="-1" selected>不限</option> | |||||
<option value="7">一周以内</option> | |||||
<option value="30">一个月内</option> | |||||
<option value="90">三个月内</option> | |||||
<option value="180">半年以内</option> | |||||
</select> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">内容类型:</td> | |||||
<td height="26"> | |||||
<select name="channeltype" id="channeltype" class="form-control"> | |||||
<option value="0" selected>不限</option> | |||||
<?php | |||||
$dsql->SetQuery("Select id,typename From #@__channeltype order by id desc"); | |||||
$dsql->Execute(); | |||||
while($row = $dsql->GetObject()) | |||||
{ | |||||
echo "<option value='".$row->id."'>".$row->typename."</option>"; | |||||
} | |||||
?> | |||||
</select> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">排序方式:</td> | |||||
<td height="26"> | |||||
<select name="orderby" id="orderby" class="form-control"> | |||||
<option value="sortrank" selected>默认</option> | |||||
<option value="senddate">收录时间</option> | |||||
<option value="pubdate">发布时间</option> | |||||
<option value="id">文档ID</option> | |||||
</select> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">显示条数:</td> | |||||
<td height="26"><input name="pagesize" type="text" id="pagesize" value="10" size="4" class="form-control"></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">关键词模式:</td> | |||||
<td height="26"> | |||||
<label><input name="kwtype" type="radio" value="1" checked> | |||||
或</label> | |||||
<label><input type="radio" name="kwtype" value="0"> | |||||
与</label> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">搜索内容:</td> | |||||
<td height="26"> | |||||
<select name="searchtype" id="searchtype" class="form-control"> | |||||
<option value="titlekeyword" selected>默认搜索</option> | |||||
<option value="title">仅搜索标题</option> | |||||
</select> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="30" bgcolor="#F4FCE4" colspan="2" align="center"></td> | |||||
<button type="submit" class="btn btn-success btn-sm">搜索</button> | |||||
<button type="reset" class="btn btn-outline-success">重置</button> | |||||
</td> | |||||
</tr> | |||||
</form> | |||||
</table> | |||||
<br> | |||||
</div> | |||||
</div> | |||||
<?php include("plus_footer.htm") ;?> | |||||
</body> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title><?php echo $cfg_webname;?>-高级搜索</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
</head> | |||||
<body class="flinkpage"> | |||||
<?php include("plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="formbox mt-3"> | |||||
<table width="100%" cellpadding="0" cellspacing="0" bgcolor="#cccccc" class='table'> | |||||
<form name="form1" action="search.php" method="get"> | |||||
<tr> | |||||
<td height="26" align="center" width="20%">网站栏目:</td> | |||||
<td height="26"> | |||||
<?php | |||||
$tl = new TypeLink(0); | |||||
$typeOptions = $tl->GetOptionArray(0,0,0); | |||||
echo "<select name='typeid' style='width:260px' class='form-control'>"; | |||||
echo "<option value='0' selected>不限栏目</option>"; | |||||
echo $typeOptions; | |||||
echo "</select>"; | |||||
?> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">关 键 字:</td> | |||||
<td width="490" height="26"><input name="q" type="text" id="q" class="form-control"></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">发布时间:</td> | |||||
<td height="26"> | |||||
<select name="starttime" id="starttime"> | |||||
<option value="-1" selected>不限</option> | |||||
<option value="7">一周以内</option> | |||||
<option value="30">一个月内</option> | |||||
<option value="90">三个月内</option> | |||||
<option value="180">半年以内</option> | |||||
</select> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">内容类型:</td> | |||||
<td height="26"> | |||||
<select name="channeltype" id="channeltype" class="form-control"> | |||||
<option value="0" selected>不限</option> | |||||
<?php | |||||
$dsql->SetQuery("Select id,typename From #@__channeltype order by id desc"); | |||||
$dsql->Execute(); | |||||
while($row = $dsql->GetObject()) | |||||
{ | |||||
echo "<option value='".$row->id."'>".$row->typename."</option>"; | |||||
} | |||||
?> | |||||
</select> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">排序方式:</td> | |||||
<td height="26"> | |||||
<select name="orderby" id="orderby" class="form-control"> | |||||
<option value="sortrank" selected>默认</option> | |||||
<option value="senddate">收录时间</option> | |||||
<option value="pubdate">发布时间</option> | |||||
<option value="id">文档ID</option> | |||||
</select> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">显示条数:</td> | |||||
<td height="26"><input name="pagesize" type="text" id="pagesize" value="10" size="4" class="form-control"></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">关键词模式:</td> | |||||
<td height="26"> | |||||
<label><input name="kwtype" type="radio" value="1" checked> | |||||
或</label> | |||||
<label><input type="radio" name="kwtype" value="0"> | |||||
与</label> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">搜索内容:</td> | |||||
<td height="26"> | |||||
<select name="searchtype" id="searchtype" class="form-control"> | |||||
<option value="titlekeyword" selected>默认搜索</option> | |||||
<option value="title">仅搜索标题</option> | |||||
</select> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="30" bgcolor="#F4FCE4" colspan="2" align="center"> | |||||
<button type="submit" class="btn btn-success btn-sm">搜索</button> | |||||
<button type="reset" class="btn btn-outline-success">重置</button> | |||||
</td> | |||||
</tr> | |||||
</form> | |||||
</table> | |||||
<br> | |||||
</div> | |||||
</div> | |||||
<?php include("plus_footer.htm") ;?> | |||||
</body> | |||||
</html> | </html> |
@@ -1,5 +0,0 @@ | |||||
<!-- | |||||
{dede:arclist row='8' titlelen='24'} | |||||
document.write("·<a href='[field:arcurl/]'>[field:title function="dede_htmlspecialchars('@me')"/]</a><br>"); | |||||
{/dede:arclist} | |||||
--> |
@@ -1,73 +1,76 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||||
<title><?php echo $diy->name; ?> - Powered by DedeBIZ</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
<div class="main mceneter"> | |||||
<?php include(DEDETEMPLATE."/plus/plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="ctitle"> | |||||
<nav class="navbar navbar-expand-lg"> | |||||
<ul class="navbar-nav mr-auto mt-2"> | |||||
<li class="nav-item"> | |||||
<h3><?php echo $diy->name; ?>内容列表</h3> | |||||
</li> | |||||
</ul> | |||||
<span class="navbar-text"><a href="diy.php?action=post&diyid=<?php echo $diy->diyid;?>" class="btn btn-success btn-sm">发布信息</a></span> | |||||
</nav> | |||||
</div> | |||||
<div class="cbox mceneter"> | |||||
<div class="maplist"> | |||||
{dede:datalist} | |||||
<table class='table' cellspacing="1"> | |||||
<?php | |||||
if(!empty($fields)) | |||||
{ | |||||
echo '<tbody>'; | |||||
echo '<tr><td bgcolor="#eeeeee" width="20%">id</td>'; | |||||
echo '<td bgcolor="#eeeeee"><div class="left">'.$fields['id'].'</div><div class="right"><a href="diy.php?action=view&diyid='.$diy->diyid.'&id='.$fields['id'].'" target="_blank">详细</a> </div></td></tr>'; | |||||
foreach($fieldlist as $field=>$fielddata) | |||||
{ | |||||
if($fields[$field]=='') continue; | |||||
if($fielddata[1]=='img') | |||||
{ | |||||
$fields[$field] = "<a href='{$fields[$field]}' target='_blank'><img src='img/addon.gif'> 图片附件</a>"; | |||||
} | |||||
else if($fielddata[1]=='addon') | |||||
{ | |||||
$fields[$field] = "<a href='{$fields[$field]}' target='_blank'><img src='img/addon.gif'> 其它附件</a>"; | |||||
} else { | |||||
if($fielddata[1]=='htmltext') $fields[$field] = html2text($fields[$field]); | |||||
else $fields[$field] = dede_htmlspecialchars($fields[$field]); | |||||
if( strlen($fields[$field]) > 250 ) | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title><?php echo $diy->name; ?>-Powered by DedeBIZ</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
<div class="main mceneter"> | |||||
<?php include(DEDETEMPLATE."/plus/plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="ctitle"> | |||||
<nav class="navbar navbar-expand-lg"> | |||||
<ul class="navbar-nav mr-auto mt-2"> | |||||
<li class="nav-item"> | |||||
<h3><?php echo $diy->name; ?>内容列表</h3> | |||||
</li> | |||||
</ul> | |||||
<span class="navbar-text"><a href="diy.php?action=post&diyid=<?php echo $diy->diyid;?>" class="btn btn-success btn-sm">发布信息</a></span> | |||||
</nav> | |||||
</div> | |||||
<div class="cbox mceneter"> | |||||
<div class="maplist"> | |||||
{dede:datalist} | |||||
<table class='table' cellspacing="1"> | |||||
<?php | |||||
if(!empty($fields)) | |||||
{ | { | ||||
$fields[$field] = cn_substr( $fields[$field], 250).''; | |||||
echo '<tbody>'; | |||||
echo '<tr><td bgcolor="#eeeeee" width="20%">id</td>'; | |||||
echo '<td bgcolor="#eeeeee"><div class="left">'.$fields['id'].'</div><div class="right"><a href="diy.php?action=view&diyid='.$diy->diyid.'&id='.$fields['id'].'" target="_blank">详细</a> </div></td></tr>'; | |||||
foreach($fieldlist as $field=>$fielddata) | |||||
{ | |||||
if($fields[$field]=='') continue; | |||||
if($fielddata[1]=='img') | |||||
{ | |||||
$fields[$field] = "<a href='{$fields[$field]}' target='_blank'><img src='img/addon.gif'> 图片附件</a>"; | |||||
} | |||||
else if($fielddata[1]=='addon') | |||||
{ | |||||
$fields[$field] = "<a href='{$fields[$field]}' target='_blank'><img src='img/addon.gif'> 其它附件</a>"; | |||||
} else { | |||||
if($fielddata[1]=='htmltext') $fields[$field] = html2text($fields[$field]); | |||||
else $fields[$field] = dede_htmlspecialchars($fields[$field]); | |||||
if( strlen($fields[$field]) > 250 ) | |||||
{ | |||||
$fields[$field] = cn_substr( $fields[$field], 250).''; | |||||
} | |||||
} | |||||
echo "<tr><td>{$fielddata[0]}</td><td>{$fields[$field]}</td></tr>"; | |||||
} | |||||
echo '</tbody>'; | |||||
} else { | |||||
echo "<tr><td>暂无记录</td></tr>"; | |||||
} | } | ||||
} | |||||
echo "<tr><td>{$fielddata[0]}</td><td>{$fields[$field]}</td></tr>"; | |||||
} | |||||
echo '</tbody>'; | |||||
} else { | |||||
echo "<tr><td>暂无记录</td></tr>"; | |||||
} | |||||
?> | |||||
</table> | |||||
{/dede:datalist} | |||||
<table class="listtable" cellspacing="2"> | |||||
<tr><td>{dede:pagelist listsize='6'/}</td></tr> | |||||
</table> | |||||
?> | |||||
</table> | |||||
{/dede:datalist} | |||||
<table class="listtable" cellspacing="2"> | |||||
<tr> | |||||
<td>{dede:pagelist listsize='6'/}</td> | |||||
</tr> | |||||
</table> | |||||
</div> | |||||
</div> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
</div> | |||||
</div> | |||||
<?php include(DEDETEMPLATE."/plus/plus_footer.htm") ;?> | |||||
</body> | |||||
<?php include(DEDETEMPLATE."/plus/plus_footer.htm") ;?> | |||||
</body> | |||||
</html> | </html> |
@@ -5,12 +5,10 @@ | |||||
</p> | </p> | ||||
</div> | </div> | ||||
</footer> | </footer> | ||||
<!-- /footer --> | |||||
<div class="scroll-top"> | <div class="scroll-top"> | ||||
<button onclick="gotop()" id="btnScrollTop"> | <button onclick="gotop()" id="btnScrollTop"> | ||||
<i class="fa fa-chevron-up"></i> | <i class="fa fa-chevron-up"></i> | ||||
</button> | </button> | ||||
</div> | </div> | ||||
<!-- /.scroll-top --> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/bootstrap.bundle.min.js"></script> | <script src="<?php echo $cfg_cmsurl; ?>/static/web/js/bootstrap.bundle.min.js"></script> | ||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/style.js"></script> | <script src="<?php echo $cfg_cmsurl; ?>/static/web/js/style.js"></script> |
@@ -17,5 +17,4 @@ | |||||
</div> | </div> | ||||
</div> | </div> | ||||
</header> | </header> | ||||
</div> | |||||
<!-- /.header --> | |||||
</div> |
@@ -1,42 +1,44 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||||
<title><?php echo $diy->name;?> - Powered by DedeBIZ</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
<div class="main mceneter"> | |||||
<?php include(DEDETEMPLATE."/plus/plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="ctitle"> | |||||
<h3><?php echo $diy->name;?>发布</h3> | |||||
</div> | |||||
<div class="cbox mceneter"> | |||||
<div class="maplist"> | |||||
<form action="<?php echo $cfg_cmspath;?>/apps/diy.php" enctype="multipart/form-data" method="post"> | |||||
<input type="hidden" name="action" value="post"> | |||||
<input type="hidden" name="diyid" value="<?php echo $diyid;?>"> | |||||
<input type="hidden" name="do" value="2"> | |||||
<table style="width:98%" cellpadding="0" cellspacing="1" class="table"> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title><?php echo $diy->name;?>-Powered by DedeBIZ</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
<div class="main mceneter"> | |||||
<?php include(DEDETEMPLATE."/plus/plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="ctitle"> | |||||
<h3><?php echo $diy->name;?>发布</h3> | |||||
</div> | |||||
<div class="cbox mceneter"> | |||||
<div class="maplist"> | |||||
<form action="<?php echo $cfg_cmspath;?>/apps/diy.php" enctype="multipart/form-data" | |||||
method="post"> | |||||
<input type="hidden" name="action" value="post"> | |||||
<input type="hidden" name="diyid" value="<?php echo $diyid;?>"> | |||||
<input type="hidden" name="do" value="2"> | |||||
<table style="width:98%" cellpadding="0" cellspacing="1" class="table"> | |||||
<?php | <?php | ||||
echo $postform; | |||||
echo $postform; | |||||
?> | ?> | ||||
</table> | |||||
<div align="center"> | |||||
<button type="submit" name="submit" class="btn btn-success btn-sm">提交</button> | |||||
<button type="reset" name="reset" class="btn btn-success btn-sm">重置</button> | |||||
</div> | |||||
</form> | |||||
</table> | |||||
<div align="center"> | |||||
<button type="submit" name="submit" class="btn btn-success btn-sm">提交</button> | |||||
<button type="reset" name="reset" class="btn btn-success btn-sm">重置</button> | |||||
</div> | |||||
</form> | |||||
</div> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
</div> | </div> | ||||
</div> | |||||
<?php include(DEDETEMPLATE."/plus/plus_footer.htm") ;?> | |||||
</body> | |||||
<?php include(DEDETEMPLATE."/plus/plus_footer.htm") ;?> | |||||
</body> | |||||
</html> | </html> |
@@ -1,53 +1,53 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<title>扫描二维码</title> | |||||
<meta http-equiv="Content-Type" content="text/html; charset={dede:global.cfg_soft_lang/}"> | |||||
<style> | |||||
body { | |||||
margin: 0; | |||||
} | |||||
.dede_weixin_popup { | |||||
padding: 10px; | |||||
width: 240px; | |||||
height: 300px; | |||||
background: #fff; | |||||
font-size: 12px; | |||||
} | |||||
.dede_weixin_popup .dede_weixin_popup_head { | |||||
font-size: 12px; | |||||
font-weight: bold; | |||||
text-align: left; | |||||
line-height: 16px; | |||||
height: 16px; | |||||
position: relative; | |||||
color: #000; | |||||
} | |||||
.dede_weixin_popup .dede_weixin_popup_foot { | |||||
font-size: 12px; | |||||
text-align: left; | |||||
line-height: 22px; | |||||
color: #666; | |||||
text-align: center; | |||||
} | |||||
</style> | |||||
</head> | |||||
<body> | |||||
<div id="dede_weixin_qrcode_dialog" class="dede_weixin_popup" style="width: 240px; height: 300px;"> | |||||
<div class="dede_weixin_popup_head"><span>分享到微信朋友圈</span> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>扫描二维码</title> | |||||
<style> | |||||
body { | |||||
margin: 0; | |||||
} | |||||
.dede_weixin_popup { | |||||
padding: 10px; | |||||
width: 240px; | |||||
height: 300px; | |||||
background: #fff; | |||||
font-size: 12px; | |||||
} | |||||
.dede_weixin_popup .dede_weixin_popup_head { | |||||
font-size: 12px; | |||||
font-weight: bold; | |||||
text-align: left; | |||||
line-height: 16px; | |||||
height: 16px; | |||||
position: relative; | |||||
color: #000; | |||||
} | |||||
.dede_weixin_popup .dede_weixin_popup_foot { | |||||
font-size: 12px; | |||||
text-align: left; | |||||
line-height: 22px; | |||||
color: #666; | |||||
text-align: center; | |||||
} | |||||
</style> | |||||
</head> | |||||
<body> | |||||
<div id="dede_weixin_qrcode_dialog" class="dede_weixin_popup" style="width: 240px; height: 300px;"> | |||||
<div class="dede_weixin_popup_head"><span>分享到微信朋友圈</span> | |||||
</div> | |||||
<div id="dede_weixin_qrcode_dialog_qr" class="dede_weixin_popup_main"> | |||||
<center> | |||||
<a href="https://www.dedebiz.com/" title="二维码生成" target="_blank"> | |||||
<img src="{dede:global name='cfg_plus_dir'/}/qrcode.php?action=get_qrcode&type={dede:var name='type'/}&id={dede:var name='id'/}"> | |||||
</a> | |||||
</center> | |||||
</div> | |||||
<div class="dede_weixin_popup_foot"> | |||||
打开微信或扫码工具,使用“扫一扫”<br> | |||||
访问后即可将网页分享至朋友圈 | |||||
</div> | |||||
</div> | </div> | ||||
<div id="dede_weixin_qrcode_dialog_qr" class="dede_weixin_popup_main"> | |||||
<center> | |||||
<a href="https://www.dedebiz.com/" title="二维码生成" target="_blank"> | |||||
<img src="{dede:global name='cfg_plus_dir'/}/qrcode.php?action=get_qrcode&type={dede:var name='type'/}&id={dede:var name='id'/}"> | |||||
</a> | |||||
</center> | |||||
</div> | |||||
<div class="dede_weixin_popup_foot">打开微信或扫码工具,使用“扫一扫” | |||||
<br>访问后即可将网页分享至朋友圈</div> | |||||
</div> | |||||
</body> | |||||
</body> | |||||
</html> | </html> |
@@ -1,46 +1,48 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||||
<title>推荐_<?php echo $title; ?>_{dede:global name='cfg_webname'/}</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
</head> | |||||
<body class="flinkpage"> | |||||
<?php include("plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title mt-3">推荐:<?php echo $title; ?></div> | |||||
<div class="formbox"> | |||||
<form name="form1" method="post" action="recommend.php"> | |||||
<input type="hidden" name="arcurl" value="<?php echo $arcurl; ?>"> | |||||
<input type="hidden" name="action" value="send"> | |||||
<input type="hidden" name="arcID" value="<?php echo $aid; ?>"> | |||||
<table width="100%" class="table" cellspacing="2" cellpadding="1"> | |||||
<tr> | |||||
<td height="26" align="right" width="160">您好友的Email:</td> | |||||
<td height="26" align="left"><input name="email" type="text" class="form-control" id="email" value="@"></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="right">您的留言:</td> | |||||
<td height="26" align="left"><textarea name="msg" cols="80" rows="16" id="msg" class="form-control"> | |||||
您好,我在 [<?php echo $cfg_webname; ?>] 发现了一个很好的东东: | |||||
您不妨去看看吧 | |||||
文档的名称是:<?php echo $title; ?> | |||||
网址是:<?php $arcUrl = ($cfg_multi_site != 'Y' ? $cfg_basehost : '').$arcurl; echo $arcUrl;?> | |||||
</textarea></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="left"> </td> | |||||
<td height="26" align="left"> | |||||
<button type="submit" class="btn btn-success btn-sm">发送</button> | |||||
</td> | |||||
</tr> | |||||
</table> | |||||
</form> | |||||
</div> | |||||
</div> | |||||
<?php include("plus_footer.htm") ;?> | |||||
</body> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>推荐<?php echo $title; ?>-{dede:global name='cfg_webname'/}</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
</head> | |||||
<body class="flinkpage"> | |||||
<?php include("plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title mt-3">推荐:<?php echo $title; ?></div> | |||||
<div class="formbox"> | |||||
<form name="form1" method="post" action="recommend.php"> | |||||
<input type="hidden" name="arcurl" value="<?php echo $arcurl; ?>"> | |||||
<input type="hidden" name="action" value="send"> | |||||
<input type="hidden" name="arcID" value="<?php echo $aid; ?>"> | |||||
<table width="100%" class="table" cellspacing="2" cellpadding="1"> | |||||
<tr> | |||||
<td height="26" align="right" width="160">您好友的Email:</td> | |||||
<td height="26" align="left"><input name="email" type="text" class="form-control" id="email" value="@"></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="right">您的留言:</td> | |||||
<td height="26" align="left"> | |||||
<textarea name="msg" cols="80" rows="16" id="msg" class="form-control"> | |||||
您好,我在 [<?php echo $cfg_webname; ?>] 发现了一个很好的东东: | |||||
您不妨去看看吧 | |||||
文档的名称是:<?php echo $title; ?> | |||||
网址是:<?php $arcUrl = ($cfg_multi_site != 'Y' ? $cfg_basehost : '').$arcurl; echo $arcUrl;?> | |||||
</textarea> | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" colspan="2" align="left"> | |||||
<button type="submit" class="btn btn-success btn-sm">发送</button> | |||||
</td> | |||||
</tr> | |||||
</table> | |||||
</form> | |||||
</div> | |||||
</div> | |||||
<?php include("plus_footer.htm") ;?> | |||||
</body> | |||||
</html> | </html> |
@@ -19,4 +19,4 @@ | |||||
</item> | </item> | ||||
{/dede:rssitem} | {/dede:rssitem} | ||||
</channel> | </channel> | ||||
</rss> | |||||
</rss> |
@@ -1,34 +1,34 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset={dede:global name='cfg_soft_lang'/}"> | |||||
<title>{dede:global name='cfg_webname'/}_RSS订阅地图</title> | |||||
<link href="{dede:global name='cfg_templets_skin'/}/style/dedecms.css" rel="stylesheet" media="screen"> | |||||
</head> | |||||
<body class="mapspage"> | |||||
<div class="header"> | |||||
<div class="top w960 center"> | |||||
<div class="title"> | |||||
<h1><a href="{dede:global name='cfg_basehost'/}"><img src="{dede:global name='cfg_templets_skin'/}/images/logo.gif"></a></h1> | |||||
</div><!-- /title --> | |||||
</div><!-- /top --> | |||||
</div><!-- /header --> | |||||
<div class="w960 clear center mt1"> | |||||
<div class="sp-title"> | |||||
<h2>RSS地图</h2> | |||||
<span class="more"><a href="{dede:global name='cfg_basehost'/}">返回首页</a></span> | |||||
</div> | |||||
<div class="linkbox"> | |||||
{dede:global name='maplist'/} | |||||
</div> | |||||
</div> | |||||
<!-- //底部模板 --> | |||||
<div class="footer w960 center mt1 clear"> | |||||
<div class="footer_body"> | |||||
<p class="powered"> | |||||
{dede:global.cfg_powerby/} {dede:global.cfg_beian/} Powered by <a href="https://www.dedebiz.com" title="DedeBIZ内容管理系统-国内流行的内容管理系统多端全媒体解决方案" target="_blank">DedeBIZ{dede:global.cfg_version/}</a> | |||||
</p> | |||||
</div> | |||||
</div> | |||||
</body> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:global name='cfg_webname'/}-RSS订阅地图</title> | |||||
<link href="{dede:global name='cfg_templets_skin'/}/style/dedecms.css" rel="stylesheet" media="screen"> | |||||
</head> | |||||
<body class="mapspage"> | |||||
<div class="header"> | |||||
<div class="top w960 center"> | |||||
<div class="title"> | |||||
<h1><a href="{dede:global name='cfg_basehost'/}"><img src="{dede:global name='cfg_templets_skin'/}/images/logo.gif"></a></h1> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<div class="w960 clear center mt1"> | |||||
<div class="sp-title"> | |||||
<h2>RSS地图</h2> | |||||
<span class="more"><a href="{dede:global name='cfg_basehost'/}">返回首页</a></span> | |||||
</div> | |||||
<div class="linkbox"> | |||||
{dede:global name='maplist'/} | |||||
</div> | |||||
</div> | |||||
<div class="footer w960 center mt1 clear"> | |||||
<div class="footer_body"> | |||||
<p class="powered"> | |||||
{dede:global.cfg_powerby/} {dede:global.cfg_beian/} Powered by <a href="https://www.dedebiz.com" title="DedeBIZ内容管理系统-国内流行的内容管理系统多端全媒体解决方案" target="_blank">DedeBIZ{dede:global.cfg_version/}</a> | |||||
</p> | |||||
</div> | |||||
</div> | |||||
</body> | |||||
</html> | </html> |
@@ -1,70 +1,73 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<title>下单购买 - {dede:var.carts.orders_id/}</title> | |||||
<meta http-equiv="Content-Type" content="text/html; charset={dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="buycarpage"> | |||||
<?php include(DEDETEMPLATE."/plus/plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"><h3>商品购买</h3></div> | |||||
<div class="buycar"> | |||||
<table cellpadding="0" cellspacing="0" class="flow"> | |||||
<tr> | |||||
<td>下单购买</td> | |||||
<td class="thisclass">买家付款</td> | |||||
<td>确认收货</td> | |||||
<td>交易结束 </td> | |||||
</tr> | |||||
</table> | |||||
<table width="100%" cellpadding="0" cellspacing="0" class="table"> | |||||
<thead> | |||||
<tr> | |||||
<td colspan="6">确认订单并付款</td> | |||||
</tr> | |||||
</thead> | |||||
<tbody> | |||||
<tr> | |||||
<td width="180" class="td1">订单编号:</td> | |||||
<td>{dede:var.carts.orders_id/}</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">商品总数:</td> | |||||
<td>{dede:var.carts.cart_count/}件</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">订单价格:</td> | |||||
<td><strong class="fc-f60" id="priceCount">{dede:var.carts.price_count/} 元</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">配送方式:</td> | |||||
<td>{dede:var.pay_name/}</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">支付方式:</td> | |||||
<td>{dede:var.pay_way/}</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">支付信息:</td> | |||||
<td>{dede:var.description/}</td> | |||||
</tr> | |||||
</tbody> | |||||
<tfoot> | |||||
<tr> | |||||
<td colspan="2"> | |||||
{dede:var.button/} | |||||
</td> | |||||
</tr> | |||||
</tfoot> | |||||
</table> | |||||
</div> | |||||
</div> | |||||
<?php include(DEDETEMPLATE."/plus/plus_footer.htm") ;?> | |||||
</body> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>下单购买-{dede:var.carts.orders_id/}</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="buycarpage"> | |||||
<?php include(DEDETEMPLATE."/plus/plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"> | |||||
<h3>商品购买</h3> | |||||
</div> | |||||
<div class="buycar"> | |||||
<table cellpadding="0" cellspacing="0" class="flow"> | |||||
<tr> | |||||
<td>下单购买</td> | |||||
<td class="thisclass">买家付款</td> | |||||
<td>确认收货</td> | |||||
<td>交易结束 </td> | |||||
</tr> | |||||
</table> | |||||
<table width="100%" cellpadding="0" cellspacing="0" class="table"> | |||||
<thead> | |||||
<tr> | |||||
<td colspan="6">确认订单并付款</td> | |||||
</tr> | |||||
</thead> | |||||
<tbody> | |||||
<tr> | |||||
<td width="180" class="td1">订单编号:</td> | |||||
<td>{dede:var.carts.orders_id/}</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">商品总数:</td> | |||||
<td>{dede:var.carts.cart_count/}件</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">订单价格:</td> | |||||
<td><strong class="fc-f60" id="priceCount">{dede:var.carts.price_count/} 元</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">配送方式:</td> | |||||
<td>{dede:var.pay_name/}</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">支付方式:</td> | |||||
<td>{dede:var.pay_way/}</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="180" class="td1">支付信息:</td> | |||||
<td>{dede:var.description/}</td> | |||||
</tr> | |||||
</tbody> | |||||
<tfoot> | |||||
<tr> | |||||
<td colspan="2"> | |||||
{dede:var.button/} | |||||
</td> | |||||
</tr> | |||||
</tfoot> | |||||
</table> | |||||
</div> | |||||
</div> | |||||
<?php include(DEDETEMPLATE."/plus/plus_footer.htm") ;?> | |||||
</body> | |||||
</html> | </html> |
@@ -1,34 +1,34 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||||
<title><?php echo $arctitle; ?></title> | |||||
<link href="<?php echo $cfg_templets_skin; ?>/style/search.css" rel="stylesheet" media="screen"> | |||||
</head> | |||||
<body> | |||||
<div class="header"> | |||||
<div class="top"> | |||||
<h1><a href="<?php echo $cfg_basehost;?>" title="<?php echo $cfg_webname;?>"><img src="<?php echo $cfg_templets_skin; ?>/images/logo.gif"></a></h1> | |||||
</div> | |||||
</div> | |||||
<div class="msgbar"> | |||||
<p> | |||||
图集详细页面 > <a href='<?php echo $arcurl?>'><?php echo $arctitle; ?></a> | |||||
</p> | |||||
</div> | |||||
<table width='100%' cellpadding='2' cellspacing='1'> | |||||
<tr> | |||||
<td align='center'> | |||||
<a href='<?php echo $nextlink; ?>'><br> | |||||
<img src='<?php echo $src?>'></a><br> | |||||
<div style='line-height:32px;'> | |||||
<a href="<?php echo $src; ?>" target='_blank'>[查看原图]</a> | |||||
</div> | |||||
<div style='line-height:32px;border-top:1px dashed #BED6A7'> | |||||
<?php echo $pageGuide?> | |||||
</div> | |||||
</td> | |||||
</tr> | |||||
</table> | |||||
</body> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title><?php echo $arctitle; ?></title> | |||||
<link href="<?php echo $cfg_templets_skin; ?>/style/search.css" rel="stylesheet" media="screen"> | |||||
</head> | |||||
<body> | |||||
<div class="header"> | |||||
<div class="top"> | |||||
<h1><a href="<?php echo $cfg_basehost;?>" title="<?php echo $cfg_webname;?>"><img src="<?php echo $cfg_templets_skin; ?>/images/logo.gif"></a></h1> | |||||
</div> | |||||
</div> | |||||
<div class="msgbar"> | |||||
<p>图集详细页面 ><a href="<?php echo $arcurl?>"><?php echo $arctitle; ?></a></p> | |||||
</div> | |||||
<table width="100%" cellpadding="2" cellspacing="1"> | |||||
<tr> | |||||
<td align="center"> | |||||
<a href="<?php echo $nextlink; ?>"> | |||||
<img src="<?php echo $src?>"> | |||||
</a> | |||||
<div style="line-height:32px"> | |||||
<a href="<?php echo $src; ?>" target="_blank">[查看原图]</a> | |||||
</div> | |||||
<div style="line-height:32px;border-top:1px dashed #BED6A7"> | |||||
<?php echo $pageGuide?> | |||||
</div> | |||||
</td> | |||||
</tr> | |||||
</table> | |||||
</body> | |||||
</html> | </html> |
@@ -1,32 +1,32 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset={dede:global name='cfg_soft_lang'/}"> | |||||
<title>{dede:global name='cfg_webname'/}_网站地图</title> | |||||
<link href="{dede:global name='cfg_templets_skin'/}/style/dedecms.css" rel="stylesheet" media="screen"> | |||||
</head> | |||||
<body class="mapspage"> | |||||
<div class="header"> | |||||
<div class="top w960 center"> | |||||
<div class="title"> | |||||
<h1><a href="{dede:global name='cfg_basehost'/}"><img src="{dede:global name='cfg_templets_skin'/}/images/logo.gif"></a></h1> | |||||
</div><!-- /title --> | |||||
</div><!-- /top --> | |||||
</div><!-- /header --> | |||||
<div class="w960 clear center mt1"> | |||||
<div class="sp-title"> | |||||
<h2>网站地图</h2> | |||||
<span class="more"><a href="{dede:global name='cfg_basehost'/}">返回首页</a></span> | |||||
</div> | |||||
{dede:global name='maplist'/} | |||||
</div> | |||||
<!-- //底部模板 --> | |||||
<div class="footer w960 center mt1 clear"> | |||||
<div class="footer_body"> | |||||
<p class="powered"> | |||||
{dede:global.cfg_powerby/} {dede:global.cfg_beian/} Powered by <a href="https://www.dedebiz.com" title="DedeBIZ内容管理系统-国内流行的内容管理系统多端全媒体解决方案" target="_blank">DedeBIZ{dede:global.cfg_version/}</a> | |||||
</p> | |||||
</div> | |||||
</div> | |||||
</body> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:global name='cfg_webname'/}-网站地图</title> | |||||
<link href="{dede:global name='cfg_templets_skin'/}/style/dedecms.css" rel="stylesheet" media="screen"> | |||||
</head> | |||||
<body class="mapspage"> | |||||
<div class="header"> | |||||
<div class="top w960 center"> | |||||
<div class="title"> | |||||
<h1><a href="{dede:global name='cfg_basehost'/}"><img src="{dede:global name='cfg_templets_skin'/}/images/logo.gif"></a></h1> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<div class="w960 clear center mt1"> | |||||
<div class="sp-title"> | |||||
<h2>网站地图</h2> | |||||
<span class="more"><a href="{dede:global name='cfg_basehost'/}">返回首页</a></span> | |||||
</div> | |||||
{dede:global name='maplist'/} | |||||
</div> | |||||
<div class="footer w960 center mt1 clear"> | |||||
<div class="footer_body"> | |||||
<p class="powered"> | |||||
{dede:global.cfg_powerby/} {dede:global.cfg_beian/} Powered by <a href="https://www.dedebiz.com" title="DedeBIZ内容管理系统-国内流行的内容管理系统多端全媒体解决方案" target="_blank">DedeBIZ{dede:global.cfg_version/}</a> | |||||
</p> | |||||
</div> | |||||
</div> | |||||
</body> | |||||
</html> | </html> |
@@ -1,56 +1,57 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||||
<title><?php echo $diy->name;?> - powered by dedebiz</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
<div class="main mceneter"> | |||||
<?php include(DEDETEMPLATE."/plus/plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="ctitle"> | |||||
<h3><?php echo $diy->name;?>详细内容</h3> | |||||
<span></span> | |||||
</div> | |||||
<div class="cbox mceneter"> | |||||
<div class="maplist"> | |||||
<br> | |||||
<table cellspacing="1" class="table"> | |||||
<?php | |||||
echo '<tbody>'; | |||||
echo '<tr><td bgcolor="#f8f8f8" width="20%">id</td><td bgcolor="#f8f8f8">'.$row['id'].'</td></tr>'; | |||||
$allowhtml = array('htmltext'); | |||||
foreach($fieldlist as $field=>$fielddata) | |||||
{ | |||||
if($row[$field]=='') continue; | |||||
if($fielddata[1]=='img') | |||||
{ | |||||
$row[$field] = "<a href='{$row[$field]}' target='_blank'><img src='{$row[$field]}'/></a>"; | |||||
} | |||||
else if($fielddata[1]=='addon') | |||||
{ | |||||
$row[$field] = "<a href='{$row[$field]}' target='_blank'><img src='img/addon.gif'> 相关附件</a>"; | |||||
} else { | |||||
if(!in_array($fielddata[1], $allowhtml)) | |||||
{ | |||||
$row[$field] = htmlspecialchars($row[$field]); | |||||
} | |||||
} | |||||
echo '<tr><td>'.$fielddata[0].'</td><td>'.$row[$field].'</td></tr>'; | |||||
} | |||||
echo '</tbody>'; | |||||
?> | |||||
</table> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title><?php echo $diy->name;?>-Powered by DedeBIZ</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
<div class="main mceneter"> | |||||
<?php include(DEDETEMPLATE."/plus/plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="ctitle"> | |||||
<h3><?php echo $diy->name;?>详细内容</h3> | |||||
<span></span> | |||||
</div> | |||||
<div class="cbox mceneter"> | |||||
<div class="maplist"> | |||||
<br> | |||||
<table cellspacing="1" class="table"> | |||||
<?php | |||||
echo '<tbody>'; | |||||
echo '<tr><td bgcolor="#f8f8f8" width="20%">id</td><td bgcolor="#f8f8f8">'.$row['id'].'</td></tr>'; | |||||
$allowhtml = array('htmltext'); | |||||
foreach($fieldlist as $field=>$fielddata) | |||||
{ | |||||
if($row[$field]=='') continue; | |||||
if($fielddata[1]=='img') | |||||
{ | |||||
$row[$field] = "<a href='{$row[$field]}' target='_blank'><img src='{$row[$field]}'/></a>"; | |||||
} | |||||
else if($fielddata[1]=='addon') | |||||
{ | |||||
$row[$field] = "<a href='{$row[$field]}' target='_blank'><img src='img/addon.gif'> 相关附件</a>"; | |||||
} else { | |||||
if(!in_array($fielddata[1], $allowhtml)) | |||||
{ | |||||
$row[$field] = htmlspecialchars($row[$field]); | |||||
} | |||||
} | |||||
echo '<tr><td>'.$fielddata[0].'</td><td>'.$row[$field].'</td></tr>'; | |||||
} | |||||
echo '</tbody>'; | |||||
?> | |||||
</table> | |||||
</div> | |||||
</div> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
</div> | |||||
</div> | |||||
<?php include(DEDETEMPLATE."/plus/plus_footer.htm") ;?> | |||||
</body> | |||||
<?php include(DEDETEMPLATE."/plus/plus_footer.htm") ;?> | |||||
</body> | |||||
</html> | </html> |
@@ -1,49 +1,50 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||||
<title><?php echo $msgtitle; ?></title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="flinkpage"> | |||||
<?php include("plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"> | |||||
<span class="more"> | |||||
<a href="stow.php?aid=<?php echo $aid; ?>">[收藏此文档]</a> | | |||||
<a href="../user">[会员中心]</a> | | |||||
<a href="../">[返回首页]</a> | |||||
</span> | |||||
</div> | |||||
<div class="formbox"> | |||||
<table width="100%" cellpadding="3" cellspacing="1" bgcolor="#DDEAC8" class='table'> | |||||
<tr bgcolor="#EFF4EA"> | |||||
<td height="26" colspan="2">错误具体提示信息:</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="60" colspan="2" align="center"><?php echo $moremsg; ?></td> | |||||
</tr> | |||||
<tr bgcolor="#EFF4EA"> | |||||
<td width="17%" height="26" align="center">文档标题:</td> | |||||
<td width="83%" height="26"><?php echo $arcLinktitle; ?></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">发布时间:</td> | |||||
<td height="26"><?php echo $pubdate; ?></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="70" align="center">文档简介:</td> | |||||
<td><?php echo $description; ?></td> | |||||
</tr> | |||||
</table> | |||||
<br> | |||||
</div> | |||||
</div> | |||||
<?php include("plus_footer.htm") ;?> | |||||
</body> | |||||
</html> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title><?php echo $msgtitle; ?></title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="flinkpage"> | |||||
<?php include("plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"> | |||||
<span class="more"> | |||||
<a href="stow.php?aid=<?php echo $aid; ?>">[收藏此文档]</a> | | |||||
<a href="../user">[会员中心]</a> | | |||||
<a href="../">[返回首页]</a> | |||||
</span> | |||||
</div> | |||||
<div class="formbox"> | |||||
<table width="100%" cellpadding="3" cellspacing="1" bgcolor="#DDEAC8" class='table'> | |||||
<tr bgcolor="#EFF4EA"> | |||||
<td height="26" colspan="2">错误具体提示信息:</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="60" colspan="2" align="center"><?php echo $moremsg; ?></td> | |||||
</tr> | |||||
<tr bgcolor="#EFF4EA"> | |||||
<td width="17%" height="26" align="center">文档标题:</td> | |||||
<td width="83%" height="26"><?php echo $arcLinktitle; ?></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="26" align="center">发布时间:</td> | |||||
<td height="26"><?php echo $pubdate; ?></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="70" align="center">文档简介:</td> | |||||
<td><?php echo $description; ?></td> | |||||
</tr> | |||||
</table> | |||||
<br> | |||||
</div> | |||||
</div> | |||||
<?php include("plus_footer.htm") ;?> | |||||
</body> | |||||
</html> |
@@ -1,57 +1,57 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||||
<title><?php echo $msgtitle; ?></title> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="flinkpage"> | |||||
<div class="header"> | |||||
<div class="top w960 center"> | |||||
<div class="title"> | |||||
<h1><a href="<?php echo $cfg_basehost;?>"><img src="<?php echo $cfg_templets_skin; ?>/images/logo.gif"></a></h1> | |||||
</div><!-- /title --> | |||||
</div><!-- /top --> | |||||
</div><!-- /header --> | |||||
<div class="w960 clear center mt1 cmt-box"> | |||||
<div class="sp-title"> | |||||
<h2>提示信息</h2> | |||||
<span class="more"> | |||||
<a href="../user">[会员中心]</a> | | |||||
<a href="../">[返回首页]</a> | |||||
</span> | |||||
</div> | |||||
<div class="formbox" style="width:960px"> | |||||
<table width="100%" cellpadding="3" cellspacing="1" bgcolor="#DDEAC8"> | |||||
<tr bgcolor="#EFF4EA"> | |||||
<td height="26" colspan="2">错误具体提示信息:</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="60" colspan="2" align="center"><?php echo $moremsg; ?></td> | |||||
</tr> | |||||
<tr bgcolor="#EFF4EA"> | |||||
<td width="17%" height="26" align="center">栏目名称:</td> | |||||
<td width="83%" height="26"><?php echo $lv->Fields['typename']; ?></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="70" align="center">栏目简介:</td> | |||||
<td><?php echo $lv->Fields['description']; ?></td> | |||||
</tr> | |||||
</table> | |||||
</div> | |||||
</div> | |||||
<!-- //底部模板 --> | |||||
<div class="footer w960 center mt1 clear"> | |||||
<div class="footer_body"> | |||||
<span class="gotop"><a href="javascript:scroll(0,0)"><img src="<?php echo $cfg_templets_skin; ?>/images/top.gif"></a></span> | |||||
<p class="powered"> | |||||
{dede:global.cfg_powerby/} {dede:global.cfg_beian/} Powered by <a href="https://www.dedebiz.com" title="DedeBIZ内容管理系统-国内流行的内容管理系统多端全媒体解决方案" target="_blank">DedeBIZ{dede:global.cfg_version/}</a> | |||||
</p> | |||||
</div> | |||||
</div> | |||||
</body> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title><?php echo $msgtitle; ?></title> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="flinkpage"> | |||||
<div class="header"> | |||||
<div class="top w960 center"> | |||||
<div class="title"> | |||||
<h1><a href="<?php echo $cfg_basehost;?>"><img src="<?php echo $cfg_templets_skin; ?>/images/logo.gif"></a></h1> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<div class="w960 clear center mt1 cmt-box"> | |||||
<div class="sp-title"> | |||||
<h2>提示信息</h2> | |||||
<span class="more"> | |||||
<a href="../user">[会员中心]</a> | | |||||
<a href="../">[返回首页]</a> | |||||
</span> | |||||
</div> | |||||
<div class="formbox" style="width:960px"> | |||||
<table width="100%" cellpadding="3" cellspacing="1" bgcolor="#DDEAC8"> | |||||
<tr bgcolor="#EFF4EA"> | |||||
<td height="26" colspan="2">错误具体提示信息:</td> | |||||
</tr> | |||||
<tr> | |||||
<td height="60" colspan="2" align="center"><?php echo $moremsg; ?></td> | |||||
</tr> | |||||
<tr bgcolor="#EFF4EA"> | |||||
<td width="17%" height="26" align="center">栏目名称:</td> | |||||
<td width="83%" height="26"><?php echo $lv->Fields['typename']; ?></td> | |||||
</tr> | |||||
<tr> | |||||
<td height="70" align="center">栏目简介:</td> | |||||
<td><?php echo $lv->Fields['description']; ?></td> | |||||
</tr> | |||||
</table> | |||||
</div> | |||||
</div> | |||||
<div class="footer w960 center mt1 clear"> | |||||
<div class="footer_body"> | |||||
<span class="gotop"><a href="javascript:scroll(0,0)"><img src="<?php echo $cfg_templets_skin; ?>/images/top.gif"></a></span> | |||||
<p class="powered"> | |||||
{dede:global.cfg_powerby/} {dede:global.cfg_beian/} Powered by <a href="https://www.dedebiz.com" title="DedeBIZ内容管理系统-国内流行的内容管理系统多端全媒体解决方案" target="_blank">DedeBIZ{dede:global.cfg_version/}</a> | |||||
</p> | |||||
</div> | |||||
</div> | |||||
</body> | |||||
</html> | </html> |
@@ -1,35 +1,36 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||||
<title><?php echo $cfg_webname?>_投票结果</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="flinkpage"> | |||||
<?php include("plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"> | |||||
<h3><?php echo $voname?></h3> | |||||
<p> | |||||
<span class="more"> | |||||
投票开始时间:<?php echo $starttime;?> | |||||
投票结束时间:<?php echo $endtime;?> | |||||
投票人数:<?php echo $totalcount;?> | |||||
</span> | |||||
</p> | |||||
</div> | |||||
<div class="formbox"> | |||||
<?php echo $rsmsg;?> | |||||
</div> | |||||
<div class="formbox"> | |||||
<?php echo $votelist;?> | |||||
</div> | |||||
</div> | |||||
<?php include("plus_footer.htm") ;?> | |||||
</body> | |||||
</html> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title><?php echo $cfg_webname?>-投票结果</title> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="<?php echo $cfg_cmsurl; ?>/static/web/css/index.css"> | |||||
<script src="<?php echo $cfg_cmsurl; ?>/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body class="flinkpage"> | |||||
<?php include("plus_header.htm") ;?> | |||||
<div class="container"> | |||||
<div class="sp-title"> | |||||
<h3><?php echo $voname?></h3> | |||||
<p> | |||||
<span class="more"> | |||||
投票开始时间:<?php echo $starttime;?> | |||||
投票结束时间:<?php echo $endtime;?> | |||||
投票人数:<?php echo $totalcount;?> | |||||
</span> | |||||
</p> | |||||
</div> | |||||
<div class="formbox"> | |||||
<?php echo $rsmsg;?> | |||||
</div> | |||||
<div class="formbox"> | |||||
<?php echo $votelist;?> | |||||
</div> | |||||
</div> | |||||
<?php include("plus_footer.htm") ;?> | |||||
</body> | |||||
</html> |
@@ -1,21 +1,22 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<title>{dede:wintitle/}</title> | |||||
<link rel="stylesheet" href="../static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="../static/web/css/admin.css"> | |||||
<script src="../static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
<table width="98%" cellpadding="0" cellspacing="0" align="center" class="table maintable mt-3 mb-3"> | |||||
<tr> | |||||
<td height="26" background="../static/web/img/wbg.gif" style="border:1px solid #dee2e6">{dede:wecome_info/}</td> | |||||
</tr> | |||||
<tr> | |||||
<td class="table-borderless">{dede:winform/}</td> | |||||
</tr> | |||||
</table> | |||||
</body> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:wintitle/}</title> | |||||
<link rel="stylesheet" href="../static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="../static/web/css/admin.css"> | |||||
<script src="../static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
<table width="98%" cellpadding="0" cellspacing="0" align="center" class="table maintable mt-3 mb-3"> | |||||
<tr> | |||||
<td height="26" background="../static/web/img/wbg.gif" style="border:1px solid #dee2e6">{dede:wecome_info/}</td> | |||||
</tr> | |||||
<tr> | |||||
<td class="table-borderless">{dede:winform/}</td> | |||||
</tr> | |||||
</table> | |||||
</body> | |||||
</html> | </html> |
@@ -1,61 +1,163 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset={dede:global.cfg_soft_lang/}"> | |||||
<title>搜索结果页-<?php echo $cfg_webname;?></title> | |||||
<style> | |||||
*{padding:0;margin:0} | |||||
body{font-family:Arial,Helvetica,sans-serif;font-size:14px} | |||||
a{color:#03F} | |||||
a:hover{color:#F30;text-decoration:none} | |||||
li,dd{margin:0;padding:0;list-style:none} | |||||
.cbox{width:98%;margin:8px auto 0px} | |||||
.searchbox{margin:20px 0px 0px 240px} | |||||
input,select,textarea{font-size:14px;vertical-align:middle} | |||||
.searchbox .keyword{margin:-1px 5px 0 2px;padding:6px;width:223px;height:13px;border:1px solid #a7a6aa;font-size:14px} | |||||
.searchbox .searchbut{padding:1px 6px 0px 6px;height:23px;line-height:12px;font-size:14px;margin-top:-2px} | |||||
.searchbox .adslink{margin-left:10px} | |||||
.stitle{height:35px;line-height:35px;background-color:#F0F9EE;text-indent:20px} | |||||
.lightkeyword{font-weight:bold;color:#F00} | |||||
.slist dl{display:block;width:96%;margin:12px auto 0px;padding-bottom:8px} | |||||
.slist dl dt a{line-height:27px;font-size:14px;letter-spacing:1px} | |||||
.slist dl dd p{line-height:19px;color:#444;font-size:14px;margin-left:5px} | |||||
.slist dl dd span{font-size:12px;line-height:23px;color:#390} | |||||
.slist dl dd a{color:#777;text-decoration:none} | |||||
.slist dl dd a:hover{color:#F30} | |||||
.slist dl dd span{margin-right:10px} | |||||
.spage{margin-top:10px;line-height:25px;height:25px;background:#F7F7F7;text-align:center} | |||||
.spage *{text-decoration:none;vertical-align:middle;letter-spacing:1px} | |||||
.otherkey{margin-top:10px;height:31px;line-height:31px;overflow:hidden;text-indent:10px} | |||||
.footer{text-align:center;margin-top:10px;border-top:1px solid #DDD;font-size:12px;line-height:37px} | |||||
.footer span{color:#060} | |||||
</style> | |||||
</head> | |||||
<body> | |||||
<div class="stitle cbox">搜索结果页</div> | |||||
<div class="slist cbox"> | |||||
{dede:datalist} | |||||
<?php | |||||
$fields['stime'] = GetDateTimeMk($fields['senddate']); | |||||
$fields['arcurl'] = GetArcUrl($fields['aid'],$fields['typeid'],$fields['senddate'],$fields['title'],$fields['ismake'],$fields['arcrank'],$fields['namerule'],$fields['typedir'],$fields['money']); | |||||
$fields['typeurl'] = GetTypeUrl($fields['typeid'],MfTypedir($fields['typedir']),$fields['isdefault'],$fields['defaultname'], | |||||
$fields['ispart'],$fields['namerule2'],$fields['moresite'],$fields['siteurl'],$fields['sitepath']); | |||||
?> | |||||
<dl> | |||||
<dt><a href="{dede:field.arcurl/}" target="_blank">{dede:field.title/}</a></dt> | |||||
<dd><p>{dede:field.description1/}...</p></dd> | |||||
<dd> | |||||
<span><a href="{dede:field.arcurl/}" target="_blank">{dede:field.arcurl/}</a></span> | |||||
<span>类别: <a href="{dede:field.typeurl/}" target="_blank">{dede:field.typename/}</a></span> | |||||
<span>点击: {dede:field.click/}</span> | |||||
<span>日期: {dede:field.stime/}</span> | |||||
</dd> | |||||
</dl> | |||||
{/dede:datalist} | |||||
</div> | |||||
<div class="spage cbox">{dede:pagelist listsize='6'/}</div> | |||||
<div class="footer cbox"> | |||||
<div class="copyright">{dede:global.cfg_powerby/} {dede:global.cfg_beian/} Powered by <a href="https://www.dedebiz.com" title="DedeBIZ内容管理系统-国内流行的内容管理系统多端全媒体解决方案" target="_blank">DedeBIZ{dede:global.cfg_version/}</a></div> | |||||
</div> | |||||
</body> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>搜索结果页-<?php echo $cfg_webname;?></title> | |||||
<style> | |||||
* { | |||||
padding: 0; | |||||
margin: 0 | |||||
} | |||||
body { | |||||
font-family: Arial, Helvetica, sans-serif; | |||||
font-size: 14px | |||||
} | |||||
a { | |||||
color: #03F | |||||
} | |||||
a:hover { | |||||
color: #F30; | |||||
text-decoration: none | |||||
} | |||||
li, | |||||
dd { | |||||
margin: 0; | |||||
padding: 0; | |||||
list-style: none | |||||
} | |||||
.cbox { | |||||
width: 98%; | |||||
margin: 8px auto 0px | |||||
} | |||||
.searchbox { | |||||
margin: 20px 0px 0px 240px | |||||
} | |||||
input, | |||||
select, | |||||
textarea { | |||||
font-size: 14px; | |||||
vertical-align: middle | |||||
} | |||||
.searchbox .keyword { | |||||
margin: -1px 5px 0 2px; | |||||
padding: 6px; | |||||
width: 223px; | |||||
height: 13px; | |||||
border: 1px solid #a7a6aa; | |||||
font-size: 14px | |||||
} | |||||
.searchbox .searchbut { | |||||
padding: 1px 6px 0px 6px; | |||||
height: 23px; | |||||
line-height: 12px; | |||||
font-size: 14px; | |||||
margin-top: -2px | |||||
} | |||||
.searchbox .adslink { | |||||
margin-left: 10px | |||||
} | |||||
.stitle { | |||||
height: 35px; | |||||
line-height: 35px; | |||||
background-color: #F0F9EE; | |||||
text-indent: 20px | |||||
} | |||||
.lightkeyword { | |||||
font-weight: bold; | |||||
color: #F00 | |||||
} | |||||
.slist dl { | |||||
display: block; | |||||
width: 96%; | |||||
margin: 12px auto 0px; | |||||
padding-bottom: 8px | |||||
} | |||||
.slist dl dt a { | |||||
line-height: 27px; | |||||
font-size: 14px; | |||||
letter-spacing: 1px | |||||
} | |||||
.slist dl dd p { | |||||
line-height: 19px; | |||||
color: #444; | |||||
font-size: 14px; | |||||
margin-left: 5px | |||||
} | |||||
.slist dl dd span { | |||||
font-size: 12px; | |||||
line-height: 23px; | |||||
color: #390 | |||||
} | |||||
.slist dl dd a { | |||||
color: #777; | |||||
text-decoration: none | |||||
} | |||||
.slist dl dd a:hover { | |||||
color: #F30 | |||||
} | |||||
.slist dl dd span { | |||||
margin-right: 10px | |||||
} | |||||
.spage { | |||||
margin-top: 10px; | |||||
line-height: 25px; | |||||
height: 25px; | |||||
background: #F7F7F7; | |||||
text-align: center | |||||
} | |||||
.spage * { | |||||
text-decoration: none; | |||||
vertical-align: middle; | |||||
letter-spacing: 1px | |||||
} | |||||
.otherkey { | |||||
margin-top: 10px; | |||||
height: 31px; | |||||
line-height: 31px; | |||||
overflow: hidden; | |||||
text-indent: 10px | |||||
} | |||||
.footer { | |||||
text-align: center; | |||||
margin-top: 10px; | |||||
border-top: 1px solid #DDD; | |||||
font-size: 12px; | |||||
line-height: 37px | |||||
} | |||||
.footer span { | |||||
color: #060 | |||||
} | |||||
</style> | |||||
</head> | |||||
<body> | |||||
<div class="stitle cbox">搜索结果页</div> | |||||
<div class="slist cbox"> | |||||
{dede:datalist} | |||||
<?php | |||||
$fields['stime'] = GetDateTimeMk($fields['senddate']); | |||||
$fields['arcurl'] = GetArcUrl($fields['aid'],$fields['typeid'],$fields['senddate'],$fields['title'],$fields['ismake'],$fields['arcrank'],$fields['namerule'],$fields['typedir'],$fields['money']); | |||||
$fields['typeurl'] = GetTypeUrl($fields['typeid'],MfTypedir($fields['typedir']),$fields['isdefault'],$fields['defaultname'], | |||||
$fields['ispart'],$fields['namerule2'],$fields['moresite'],$fields['siteurl'],$fields['sitepath']); | |||||
?> | |||||
<dl> | |||||
<dt><a href="{dede:field.arcurl/}" target="_blank">{dede:field.title/}</a></dt> | |||||
<dd> | |||||
<p>{dede:field.description1/}...</p> | |||||
</dd> | |||||
<dd> | |||||
<span><a href="{dede:field.arcurl/}" target="_blank">{dede:field.arcurl/}</a></span> | |||||
<span>类别: <a href="{dede:field.typeurl/}" target="_blank">{dede:field.typename/}</a></span> | |||||
<span>点击: {dede:field.click/}</span> | |||||
<span>日期: {dede:field.stime/}</span> | |||||
</dd> | |||||
</dl> | |||||
{/dede:datalist} | |||||
</div> | |||||
<div class="spage cbox">{dede:pagelist listsize='6'/}</div> | |||||
<div class="footer cbox"> | |||||
<div class="copyright">{dede:global.cfg_powerby/} {dede:global.cfg_beian/} Powered by <a href="https://www.dedebiz.com" title="DedeBIZ内容管理系统-国内流行的内容管理系统多端全媒体解决方案" target="_blank">DedeBIZ{dede:global.cfg_version/}</a> | |||||
</div> | |||||
</div> | |||||
</body> | |||||
</html> | </html> |
@@ -1,91 +1,99 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<link href="{dede:global.cfg_cmsurl/}/static/ckeditor/plugins/codesnippet/lib/highlight/styles/default.css" rel="stylesheet"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js"></script> | |||||
<script>hljs.initHighlightingOnLoad();</script> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="article-meta"> | |||||
<small>时间:</small>{dede:field.pubdate function="MyDate('Y-m-d',@me)"/} | |||||
<small>来源:</small>{dede:field.source/} | |||||
<small>作者:</small>{dede:field.writer/} | |||||
<small>点击:</small><span id="_count">...</span>次 | |||||
</div> | |||||
<div class="body py-2">{dede:field.body/}(责任编辑:{dede:adminname/})</div> | |||||
<!-- /.body --> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3">{dede:pagebreak/}</ul> | |||||
</nav> | |||||
<div class="clearfix"></div> | |||||
{dede:include comment='文档顶踩模块' filename="widget_article_digg.htm"/} | |||||
<div class="row"> | |||||
<div class="col-md-4 prenext pt-2"> | |||||
<div class="pagination-previous">{dede:prenext get='pre'/}</div> | |||||
<div class="pagination-next mt-2">{dede:prenext get='next'/}</div> | |||||
</div> | |||||
<div class="col-md-8"> | |||||
<div class="row actbox"> | |||||
<ul> | |||||
<li><i class="fa fa-star-o"></i> <a href="{dede:field name='phpurl'/}/stow.php?aid={dede:field.id/}" target="_blank">收藏</a></li> | |||||
<li><i class="fa fa-bug"></i> <a href="javascript:ErrorAddSave({dede:field.id/}, '{dede:field.title/}');">挑错</a></li> | |||||
<li><i class="fa fa-thumbs-o-up"></i> <a href="{dede:field name='phpurl'/}/recommend.php?aid={dede:field.id/}" target="_blank">推荐</a></li> | |||||
<li><i class="fa fa-print"></i> <a href="javascript:;" onClick="window.print();">打印</a></li> | |||||
</ul> | |||||
</div><!-- /actbox --> | |||||
</div> | |||||
</div> | |||||
{dede:include comment='文档评论模块' file='widget_article_feedback.htm' /} | |||||
</div> | |||||
<!-- /.article-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
<script> | |||||
//页面加载触发 | |||||
$(document).ready(function () { | |||||
//获取文档点击数统计 | |||||
$.get("{dede:field name='phpurl'/}/count.php?format=json&view=yes&aid={dede:field.id/}&mid=1", function (data) { | |||||
let result = JSON.parse(data); | |||||
$("#_count").html(result.data.click); | |||||
}) | |||||
}); | |||||
</script> | |||||
</body> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/ckeditor/plugins/codesnippet/lib/highlight/styles/default.css"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js"></script> | |||||
<script>hljs.initHighlightingOnLoad();</script> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="article-meta"> | |||||
<small>时间:</small>{dede:field.pubdate function="MyDate('Y-m-d',@me)"/} | |||||
<small>来源:</small>{dede:field.source/} | |||||
<small>作者:</small>{dede:field.writer/} | |||||
<small>点击:</small><span id="_count">...</span>次 | |||||
</div> | |||||
<div class="body py-2">{dede:field.body/}(责任编辑:{dede:adminname/})</div> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3">{dede:pagebreak/}</ul> | |||||
</nav> | |||||
<div class="clearfix"></div> | |||||
{dede:include comment='文档顶踩模块' filename="widget_article_digg.htm"/} | |||||
<div class="row"> | |||||
<div class="col-md-4 prenext pt-2"> | |||||
<div class="pagination-previous">{dede:prenext get='pre'/}</div> | |||||
<div class="pagination-next mt-2">{dede:prenext get='next'/}</div> | |||||
</div> | |||||
<div class="col-md-8"> | |||||
<div class="row actbox"> | |||||
<ul> | |||||
<li> | |||||
<i class="fa fa-star-o"></i> | |||||
<a href="{dede:field name='phpurl'/}/stow.php?aid={dede:field.id/}" target="_blank">收藏</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-bug"></i> | |||||
<a href="javascript:ErrorAddSave({dede:field.id/}, '{dede:field.title/}');">挑错</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-thumbs-o-up"></i> | |||||
<a href="{dede:field name='phpurl'/}/recommend.php?aid={dede:field.id/}" target="_blank">推荐</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-print"></i> | |||||
<a href="javascript:;" onClick="window.print();">打印</a> | |||||
</li> | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
{dede:include comment='文档评论模块' file='widget_article_feedback.htm' /} | |||||
</div> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
<script> | |||||
//页面加载触发 | |||||
$(document).ready(function() { | |||||
//获取文档点击数统计 | |||||
$.get("{dede:field name='phpurl'/}/count.php?format=json&view=yes&aid={dede:field.id/}&mid=1", function( | |||||
data) { | |||||
let result = JSON.parse(data); | |||||
$("#_count").html(result.data.click); | |||||
}) | |||||
}); | |||||
</script> | |||||
</body> | |||||
</html> | </html> |
@@ -1,102 +1,111 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/bootstrap.bundle.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/bootstrap.bundle.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | </div> | ||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="article-meta"> | |||||
<small>时间:</small>{dede:field.pubdate function="MyDate('Y-m-d',@me)"/} | |||||
<small>来源:</small>{dede:field.source/} | |||||
<small>作者:</small>{dede:field.writer/} | |||||
<small>点击:</small><span id="_count">...</span>次 | |||||
</div> | |||||
<div> | |||||
<div class="alert alert-warning mt-2">您会看到这个提示,那是因为您的系统无法识别某栏目的模型信息,或者您新建模型后,没为这个模型设计单独的模板不同模型的文档浏览页的模板为:article_模型名字标识.htm如“article_article.htm”,更多的信息您可以在频道模型管理的地方查看</div> | |||||
{dede:fieldlist} | |||||
<table width="100%" cellpadding="1" cellspacing="1" bgcolor="#BED1AB" class="table"> | |||||
<tr> | |||||
<td width="23%" height="26" align="center" bgcolor="#FBFEF5"> | |||||
[field:name/] 内容:<br> | |||||
模板调用标记:<br> | |||||
<script language='javascript'>document.write("{" + "dede:field.[field:tagname/] /" + "}");</script> | |||||
</td> | |||||
<td width="77%"> [field:value/] </td> | |||||
</tr> | |||||
</table> | |||||
{/dede:fieldlist} | |||||
</div> | |||||
<div class="body py-2">{dede:field.body/}(责任编辑:{dede:adminname/})</div> | |||||
<!-- /.body --> | |||||
<div class="clearfix"></div> | |||||
{dede:include comment='文档顶踩模块' filename="widget_article_digg.htm"/} | |||||
<div class="row"> | |||||
<div class="col-md-4 prenext pt-2"> | |||||
<div class="pagination-previous">{dede:prenext get='pre'/}</div> | |||||
<div class="pagination-next mt-2">{dede:prenext get='next'/}</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="article-meta"> | |||||
<small>时间:</small>{dede:field.pubdate function="MyDate('Y-m-d',@me)"/} | |||||
<small>来源:</small>{dede:field.source/} | |||||
<small>作者:</small>{dede:field.writer/} | |||||
<small>点击:</small><span id="_count">...</span>次 | |||||
</div> | </div> | ||||
<div class="col-md-8"> | |||||
<div class="row actbox"> | |||||
<ul> | |||||
<li><i class="fa fa-star-o"></i> <a href="{dede:field name='phpurl'/}/stow.php?aid={dede:field.id/}" target="_blank">收藏</a></li> | |||||
<li><i class="fa fa-bug"></i> <a href="javascript:ErrorAddSave({dede:field.id/}, '{dede:field.title/}');">挑错</a> | |||||
</li> | |||||
<li><i class="fa fa-thumbs-o-up"></i> <a href="{dede:field name='phpurl'/}/recommend.php?aid={dede:field.id/}" target="_blank">推荐</a></li> | |||||
<li><i class="fa fa-print"></i> <a href="javascript:;" onClick="window.print();">打印</a></li> | |||||
</ul> | |||||
</div><!-- /actbox --> | |||||
<div> | |||||
<div class="alert alert-warning mt-2">您会看到这个提示,那是因为您的系统无法识别某栏目的模型信息,或者您新建模型后,没为这个模型设计单独的模板不同模型的文档浏览页的模板为:article_模型名字标识.htm如“article_article.htm”,更多的信息您可以在频道模型管理的地方查看</div> | |||||
{dede:fieldlist} | |||||
<table width="100%" cellpadding="1" cellspacing="1" bgcolor="#BED1AB" class="table"> | |||||
<tr> | |||||
<td width="70%" height="26" align="center" bgcolor="#FBFEF5"> | |||||
[field:name/] 内容:<br> | |||||
模板调用标记:<br> | |||||
<script language='javascript'> | |||||
document.write("{" + "dede:field.[field:tagname/] /" + "}"); | |||||
</script> | |||||
</td> | |||||
<td width="70%">[field:value/]</td> | |||||
</tr> | |||||
</table> | |||||
{/dede:fieldlist} | |||||
</div> | </div> | ||||
<div class="body py-2">{dede:field.body/}(责任编辑:{dede:adminname/})</div> | |||||
<div class="clearfix"></div> | |||||
{dede:include comment='文档顶踩模块' filename="widget_article_digg.htm"/} | |||||
<div class="row"> | |||||
<div class="col-md-4 prenext pt-2"> | |||||
<div class="pagination-previous">{dede:prenext get='pre'/}</div> | |||||
<div class="pagination-next mt-2">{dede:prenext get='next'/}</div> | |||||
</div> | |||||
<div class="col-md-8"> | |||||
<div class="row actbox"> | |||||
<ul> | |||||
<li> | |||||
<i class="fa fa-star-o"></i> | |||||
<a href="{dede:field name='phpurl'/}/stow.php?aid={dede:field.id/}" target="_blank">收藏</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-bug"></i> | |||||
<a href="javascript:ErrorAddSave({dede:field.id/}, '{dede:field.title/}');">挑错</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-thumbs-o-up"></i> | |||||
<a href="{dede:field name='phpurl'/}/recommend.php?aid={dede:field.id/}" target="_blank">推荐</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-print"></i> | |||||
<a href="javascript:;" onClick="window.print();">打印</a> | |||||
</li> | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
{dede:include comment='文档评论模块' file='widget_article_feedback.htm' /} | |||||
</div> | </div> | ||||
{dede:include comment='文档评论模块' file='widget_article_feedback.htm' /} | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | </div> | ||||
<!-- /.article-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
<script> | |||||
//页面加载触发 | |||||
$(document).ready(function () { | |||||
//获取文档点击数统计 | |||||
$.get("{dede:field name='phpurl'/}/count.php?format=json&view=yes&aid={dede:field.id/}&mid=1&cid={dede:field.channel/}", function (data) { | |||||
let result = JSON.parse(data); | |||||
$("#_count").html(result.data.click); | |||||
}) | |||||
}); | |||||
</script> | |||||
</body> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
<script> | |||||
//页面加载触发 | |||||
$(document).ready(function() { | |||||
//获取文档点击数统计 | |||||
$.get("{dede:field name='phpurl'/}/count.php?format=json&view=yes&aid={dede:field.id/}&mid=1&cid={dede:field.channel/}", | |||||
function(data) { | |||||
let result = JSON.parse(data); | |||||
$("#_count").html(result.data.click); | |||||
}) | |||||
}); | |||||
</script> | |||||
</body> | |||||
</html> | </html> |
@@ -1,105 +1,114 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/bootstrap.bundle.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<link href="{dede:global.cfg_cmsurl/}/static/ckeditor/plugins/codesnippet/lib/highlight/styles/default.css" rel="stylesheet"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js"></script> | |||||
<script>hljs.initHighlightingOnLoad();</script> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/bootstrap.bundle.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/ckeditor/plugins/codesnippet/lib/highlight/styles/default.css"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js"></script> | |||||
<script>hljs.initHighlightingOnLoad();</script> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | </div> | ||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="article-meta"> | |||||
<small>时间:</small>{dede:field.pubdate function="MyDate('Y-m-d',@me)"/} | |||||
<small>来源:</small>{dede:field.source/} | |||||
<small>作者:</small>{dede:field.writer/} | |||||
<small>点击:</small><span id="_count">...</span>次 | |||||
</div> | |||||
<div> | |||||
<div class="alert alert-warning mt-2">您会看到这个提示,那是因为您的系统无法识别某栏目的模型信息,或者您新建模型后,没为这个模型设计单独的模板不同模型的文档浏览页的模板为:article_模型名字标识.htm如“article_article.htm”,更多的信息您可以在频道模型管理的地方查看</div> | |||||
{dede:fieldlist} | |||||
<table width="100%" cellpadding="1" cellspacing="1" bgcolor="#BED1AB" class="table"> | |||||
<tr> | |||||
<td width="23%" height="26" align="center" bgcolor="#FBFEF5"> | |||||
[field:name/] 内容:<br> | |||||
模板调用标记:<br> | |||||
<script language='javascript'>document.write("{" + "dede:field.[field:tagname/] /" + "}");</script> | |||||
</td> | |||||
<td width="77%"> [field:value/] </td> | |||||
</tr> | |||||
</table> | |||||
{/dede:fieldlist} | |||||
</div> | |||||
<div class="body py-2">{dede:field.body/}(责任编辑:{dede:adminname/})</div> | |||||
<!-- /.body --> | |||||
<div class="clearfix"></div> | |||||
{dede:include comment='文档顶踩模块' filename="widget_article_digg.htm"/} | |||||
<div class="row"> | |||||
<div class="col-md-4 prenext pt-2"> | |||||
<div class="pagination-previous">{dede:prenext get='pre'/}</div> | |||||
<div class="pagination-next mt-2">{dede:prenext get='next'/}</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="article-meta"> | |||||
<small>时间:</small>{dede:field.pubdate function="MyDate('Y-m-d',@me)"/} | |||||
<small>来源:</small>{dede:field.source/} | |||||
<small>作者:</small>{dede:field.writer/} | |||||
<small>点击:</small><span id="_count">...</span>次 | |||||
</div> | </div> | ||||
<div class="col-md-8"> | |||||
<div class="row actbox"> | |||||
<ul> | |||||
<li><i class="fa fa-star-o"></i> <a href="{dede:field name='phpurl'/}/stow.php?aid={dede:field.id/}" target="_blank">收藏</a></li> | |||||
<li><i class="fa fa-bug"></i> <a href="javascript:ErrorAddSave({dede:field.id/}, '{dede:field.title/}');">挑错</a> | |||||
</li> | |||||
<li><i class="fa fa-thumbs-o-up"></i> <a href="{dede:field name='phpurl'/}/recommend.php?aid={dede:field.id/}" target="_blank">推荐</a></li> | |||||
<li><i class="fa fa-print"></i> <a href="javascript:;" onClick="window.print();">打印</a></li> | |||||
</ul> | |||||
</div><!-- /actbox --> | |||||
<div> | |||||
<div class="alert alert-warning mt-2">您会看到这个提示,那是因为您的系统无法识别某栏目的模型信息,或者您新建模型后,没为这个模型设计单独的模板不同模型的文档浏览页的模板为:article_模型名字标识.htm如“article_article.htm”,更多的信息您可以在频道模型管理的地方查看</div> | |||||
{dede:fieldlist} | |||||
<table width="100%" cellpadding="1" cellspacing="1" bgcolor="#BED1AB" class="table"> | |||||
<tr> | |||||
<td width="30%" height="26" align="center" bgcolor="#FBFEF5"> | |||||
[field:name/] 内容:<br> | |||||
模板调用标记:<br> | |||||
<script language='javascript'> | |||||
document.write("{" + "dede:field.[field:tagname/] /" + "}"); | |||||
</script> | |||||
</td> | |||||
<td width="70%">[field:value/]</td> | |||||
</tr> | |||||
</table> | |||||
{/dede:fieldlist} | |||||
</div> | </div> | ||||
<div class="body py-2">{dede:field.body/}(责任编辑:{dede:adminname/})</div> | |||||
<div class="clearfix"></div> | |||||
{dede:include comment='文档顶踩模块' filename="widget_article_digg.htm"/} | |||||
<div class="row"> | |||||
<div class="col-md-4 prenext pt-2"> | |||||
<div class="pagination-previous">{dede:prenext get='pre'/}</div> | |||||
<div class="pagination-next mt-2">{dede:prenext get='next'/}</div> | |||||
</div> | |||||
<div class="col-md-8"> | |||||
<div class="row actbox"> | |||||
<ul> | |||||
<li> | |||||
<i class="fa fa-star-o"></i> | |||||
<a href="{dede:field name='phpurl'/}/stow.php?aid={dede:field.id/}" target="_blank">收藏</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-bug"></i> | |||||
<a href="javascript:ErrorAddSave({dede:field.id/}, '{dede:field.title/}');">挑错</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-thumbs-o-up"></i> | |||||
<a href="{dede:field name='phpurl'/}/recommend.php?aid={dede:field.id/}" target="_blank">推荐</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-print"></i> | |||||
<a href="javascript:;" onClick="window.print();">打印</a> | |||||
</li> | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
{dede:include comment='文档评论模块' file='widget_article_feedback.htm' /} | |||||
</div> | </div> | ||||
{dede:include comment='文档评论模块' file='widget_article_feedback.htm' /} | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | </div> | ||||
<!-- /.article-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
<script> | |||||
//页面加载触发 | |||||
$(document).ready(function () { | |||||
//获取文档点击数统计 | |||||
$.get("{dede:field name='phpurl'/}/count.php?format=json&view=yes&aid={dede:field.id/}&mid=1&cid={dede:field.channel/}", function (data) { | |||||
let result = JSON.parse(data); | |||||
$("#_count").html(result.data.click); | |||||
}) | |||||
}); | |||||
</script> | |||||
</body> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
<script> | |||||
//页面加载触发 | |||||
$(document).ready(function() { | |||||
//获取文档点击数统计 | |||||
$.get("{dede:field name='phpurl'/}/count.php?format=json&view=yes&aid={dede:field.id/}&mid=1&cid={dede:field.channel/}", | |||||
function(data) { | |||||
let result = JSON.parse(data); | |||||
$("#_count").html(result.data.click); | |||||
}) | |||||
}); | |||||
</script> | |||||
</body> | |||||
</html> | </html> |
@@ -1,175 +1,192 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/bootstrap.bundle.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script> | |||||
var shortname = "{dede:global.art_shortname/}"; | |||||
var npage = {dede:field name='nowpage' /}; | |||||
var totalpage = {dede:field name='totalpage' /}; | |||||
var namehand = '{dede:field name='namehand'/}'; | |||||
var displaytype = '{dede:field name='displaytype'/}'; | |||||
var gtimer = null; | |||||
//大图 | |||||
function dPlayBig() { | |||||
var imgObj = document.getElementById("bigimg"); | |||||
window.open(imgObj.src); | |||||
} | |||||
//停止幻灯 | |||||
function dStopPlay() { | |||||
if (gtimer) clearTimeout(gtimer); | |||||
else dPlayNext(); | |||||
} | |||||
//开始幻灯 | |||||
function dStartPlay() { | |||||
if (npage != totalpage) { | |||||
gtimer = setTimeout("dPlayNext()", 10000); | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/bootstrap.bundle.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script> | |||||
var shortname = "{dede:global.art_shortname/}"; | |||||
var npage = { | |||||
dede: field name = 'nowpage' / | |||||
}; | |||||
var totalpage = { | |||||
dede: field name = 'totalpage' / | |||||
}; | |||||
var namehand = '{dede:field name=' | |||||
namehand '/}'; | |||||
var displaytype = '{dede:field name=' | |||||
displaytype '/}'; | |||||
var gtimer = null; | |||||
//大图 | |||||
function dPlayBig() { | |||||
var imgObj = document.getElementById("bigimg"); | |||||
window.open(imgObj.src); | |||||
} | } | ||||
} | |||||
//上一张 | |||||
function dPlayPre() { | |||||
if (npage < 2) { | |||||
ShowMsg("这是第一页"); | |||||
} else { | |||||
if (npage == 2) { | |||||
if (namehand != '') location.href = namehand + shortname; | |||||
else location.href = "view.php?aid={dede:field name='id'/}"; | |||||
} else if (displaytype == 'st' && namehand != '') { | |||||
location.href = namehand + "_" + (npage - 1) + shortname; | |||||
//停止幻灯 | |||||
function dStopPlay() { | |||||
if (gtimer) clearTimeout(gtimer); | |||||
else dPlayNext(); | |||||
} | |||||
//开始幻灯 | |||||
function dStartPlay() { | |||||
if (npage != totalpage) { | |||||
gtimer = setTimeout("dPlayNext()", 10000); | |||||
} | |||||
} | |||||
//上一张 | |||||
function dPlayPre() { | |||||
if (npage < 2) { | |||||
ShowMsg("这是第一页"); | |||||
} else { | } else { | ||||
location.href = "view.php?aid={dede:field name='id'/}&pageno=" + (npage - 1); | |||||
if (npage == 2) { | |||||
if (namehand != '') location.href = namehand + shortname; | |||||
else location.href = "view.php?aid={dede:field name='id'/}"; | |||||
} else if (displaytype == 'st' && namehand != '') { | |||||
location.href = namehand + "_" + (npage - 1) + shortname; | |||||
} else { | |||||
location.href = "view.php?aid={dede:field name='id'/}&pageno=" + (npage - 1); | |||||
} | |||||
} | } | ||||
} | } | ||||
} | |||||
//下一张 | |||||
function dPlayNext() { | |||||
if (npage == totalpage) { ShowMsg("没有了哦"); } | |||||
else { | |||||
if (displaytype == 'st' && namehand != '') location.href = namehand + "_" + (npage + 1) + shortname; | |||||
else location.href = "view.php?aid={dede:field name='id'/}&pageno=" + (npage + 1); | |||||
//下一张 | |||||
function dPlayNext() { | |||||
if (npage == totalpage) { | |||||
ShowMsg("没有了哦"); | |||||
} else { | |||||
if (displaytype == 'st' && namehand != '') location.href = namehand + "_" + (npage + 1) + shortname; | |||||
else location.href = "view.php?aid={dede:field name='id'/}&pageno=" + (npage + 1); | |||||
} | |||||
} | } | ||||
} | |||||
</script> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</script> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | </div> | ||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="article-meta"> | |||||
<small>时间:</small>{dede:field.pubdate function="MyDate('Y-m-d',@me)"/} | |||||
<small>来源:</small>{dede:field.source/} | |||||
<small>作者:</small>{dede:field.writer/} | |||||
<small>点击:</small><span id="_count">...</span>次 | |||||
</div> | |||||
<div class="picbox"> | |||||
{dede:field name='pagestyle' alt='根据不同的页面风格输出不同的头信息' runphp='yes'} | |||||
if(@me==3) { | |||||
@me = '<ul class="e8">'; | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="article-meta"> | |||||
<small>时间:</small>{dede:field.pubdate function="MyDate('Y-m-d',@me)"/} | |||||
<small>来源:</small>{dede:field.source/} | |||||
<small>作者:</small>{dede:field.writer/} | |||||
<small>点击:</small><span id="_count">...</span>次 | |||||
</div> | |||||
<div class="picbox"> | |||||
{dede:field name='pagestyle' alt='根据不同的页面风格输出不同的头信息' runphp='yes'} | |||||
if(@me==3) { | |||||
@me = '<ul class="e8">'; | |||||
} | |||||
else if(@me==2) { | |||||
@me = " | |||||
<div class='mt-3 mb-3 text-center'> | |||||
<a href='javascript:dPlayBig();' class='btn btn-success btn-sm'>原始图片</a> | |||||
<a href='javascript:dPlayPre();' class='btn btn-success btn-sm'>上一张</a> | |||||
<a href='javascript:dPlayNext();' class='btn btn-success btn-sm'>下一张</a> | |||||
<a href='javascript:dStopPlay();' class='btn btn-success btn-sm'>自动 / 暂停播放</a> | |||||
</div> | |||||
"; | |||||
} else { | |||||
@me = ''; | |||||
} | |||||
{/dede:field} | |||||
<!-- 如果使用的是多页单图模式幻灯,把href里的链接改为 javascript:dPlayNext(); 表示点击看下一页 --> | |||||
{dede:field name='imgurls' alt='图片输出区'} | |||||
[field:pagestyle runphp='yes'] @me= (@me==3 ? '<li>' : '');[/field:pagestyle] | |||||
<a href='[field:linkurl/]' [field:pagestyle runphp='yes' ] @me=(@me==3 ? 'class="pic"' : '' ); [/field:pagestyle]> | |||||
<img src='[field:imgsrc/]' id='bigimg' [field:imgwidth /] alt='[field:alttext /]'> | |||||
</a> | |||||
<a href='[field:linkurl/]' [field:pagestyle runphp='yes' ]@me=(@me==3 ? 'class="title"' : '' );[/field:pagestyle]> | |||||
[field:title /] | |||||
</a> | |||||
[field:pagestyle runphp='yes'] @me = (@me==3 ? '</li>' : ''); [/field:pagestyle] | |||||
{/dede:field} | |||||
{dede:field name='pagestyle' alt='根据不同的风格输出不同的结尾信息' runphp='yes'} | |||||
if(@me==3) { | |||||
@me = ' | |||||
</ul>'; | |||||
} | } | ||||
else if(@me==2) { | else if(@me==2) { | ||||
@me = " | @me = " | ||||
<div class='mt-3 mb-3 text-center'> | |||||
<a href='javascript:dPlayBig();' class='btn btn-success btn-sm'>原始图片</a> | |||||
<a href='javascript:dPlayPre();' class='btn btn-success btn-sm'>上一张</a> | |||||
<a href='javascript:dPlayNext();' class='btn btn-success btn-sm'>下一张</a> | |||||
<a href='javascript:dStopPlay();' class='btn btn-success btn-sm'>自动 / 暂停播放</a> | |||||
</div> | |||||
"; | |||||
<script language='javascript'> | |||||
dStartPlay(); | |||||
</script>"; | |||||
} else { | } else { | ||||
@me = ''; | @me = ''; | ||||
} | } | ||||
{/dede:field} | {/dede:field} | ||||
<!-- 如果使用的是多页单图模式(幻灯),把href里的链接改为 javascript:dPlayNext(); 表示点击看下一页 --> | |||||
{dede:field name='imgurls' alt='图片输出区'} | |||||
[field:pagestyle runphp='yes'] @me= (@me==3 ? '<li>' : '');[/field:pagestyle] | |||||
<a href='[field:linkurl/]' [field:pagestyle runphp='yes' ] @me=(@me==3 ? 'class="pic"' : ''); [/field:pagestyle]> | |||||
<img src='[field:imgsrc/]' id='bigimg' [field:imgwidth /] alt='[field:alttext /]'> | |||||
</a> | |||||
<a href='[field:linkurl/]' [field:pagestyle runphp='yes' ]@me=(@me==3 ? 'class="title"' : '');[/field:pagestyle]> | |||||
[field:title /] | |||||
</a> | |||||
[field:pagestyle runphp='yes'] @me = (@me==3 ? '</li>' : ''); [/field:pagestyle] | |||||
{/dede:field} | |||||
{dede:field name='pagestyle' alt='根据不同的风格输出不同的结尾信息' runphp='yes'} | |||||
if(@me==3) { | |||||
@me = '</ul>'; | |||||
} | |||||
else if(@me==2) { | |||||
@me = " | |||||
<script language='javascript'>dStartPlay();</script>"; | |||||
} else { | |||||
@me = ''; | |||||
} | |||||
{/dede:field} | |||||
</div> | |||||
<div class="body py-2">{dede:field.body/}(责任编辑:{dede:adminname/})</div> | |||||
<!-- /.body --> | |||||
<div class="clearfix"></div> | |||||
{dede:include comment='文档顶踩模块' filename="widget_article_digg.htm"/} | |||||
<div class="row"> | |||||
<div class="col-md-4 prenext pt-2"> | |||||
<div class="pagination-previous">{dede:prenext get='pre'/}</div> | |||||
<div class="pagination-next mt-2">{dede:prenext get='next'/}</div> | |||||
</div> | </div> | ||||
<div class="col-md-8"> | |||||
<div class="row actbox"> | |||||
<ul> | |||||
<li><i class="fa fa-star-o"></i> <a href="{dede:field name='phpurl'/}/stow.php?aid={dede:field.id/}" target="_blank">收藏</a></li> | |||||
<li><i class="fa fa-bug"></i> <a href="javascript:ErrorAddSave({dede:field.id/}, '{dede:field.title/}');">挑错</a> | |||||
</li> | |||||
<li><i class="fa fa-thumbs-o-up"></i> <a href="{dede:field name='phpurl'/}/recommend.php?aid={dede:field.id/}" target="_blank">推荐</a></li> | |||||
<li><i class="fa fa-print"></i> <a href="javascript:;" onClick="window.print();">打印</a></li> | |||||
</ul> | |||||
</div><!-- /actbox --> | |||||
<div class="body py-2">{dede:field.body/}(责任编辑:{dede:adminname/})</div> | |||||
<div class="clearfix"></div> | |||||
{dede:include comment='文档顶踩模块' filename="widget_article_digg.htm"/} | |||||
<div class="row"> | |||||
<div class="col-md-4 prenext pt-2"> | |||||
<div class="pagination-previous">{dede:prenext get='pre'/}</div> | |||||
<div class="pagination-next mt-2">{dede:prenext get='next'/}</div> | |||||
</div> | |||||
<div class="col-md-8"> | |||||
<div class="row actbox"> | |||||
<ul> | |||||
<li> | |||||
<i class="fa fa-star-o"></i> | |||||
<a href="{dede:field name='phpurl'/}/stow.php?aid={dede:field.id/}" target="_blank">收藏</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-bug"></i> | |||||
<a href="javascript:ErrorAddSave({dede:field.id/}, '{dede:field.title/}');">挑错</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-thumbs-o-up"></i> | |||||
<a href="{dede:field name='phpurl'/}/recommend.php?aid={dede:field.id/}" target="_blank">推荐</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-print"></i> | |||||
<a href="javascript:;" onClick="window.print();">打印</a> | |||||
</li> | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
</div> | </div> | ||||
{dede:include comment='文档评论模块' file='widget_article_feedback.htm' /} | |||||
</div> | </div> | ||||
{dede:include comment='文档评论模块' file='widget_article_feedback.htm' /} | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | </div> | ||||
<!-- /.article-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
<script> | |||||
//页面加载触发 | |||||
$(document).ready(function () { | |||||
//获取文档点击数统计 | |||||
$.get("{dede:field name='phpurl'/}/count.php?format=json&view=yes&aid={dede:field.id/}&mid=1&cid={dede:field.channel/}", function (data) { | |||||
let result = JSON.parse(data); | |||||
$("#_count").html(result.data.click); | |||||
}) | |||||
}); | |||||
</script> | |||||
</body> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
<script> | |||||
//页面加载触发 | |||||
$(document).ready(function() { | |||||
//获取文档点击数统计 | |||||
$.get("{dede:field name='phpurl'/}/count.php?format=json&view=yes&aid={dede:field.id/}&mid=1&cid={dede:field.channel/}", | |||||
function(data) { | |||||
let result = JSON.parse(data); | |||||
$("#_count").html(result.data.click); | |||||
}) | |||||
}); | |||||
</script> | |||||
</body> | |||||
</html> | </html> |
@@ -1,93 +1,100 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | </div> | ||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="body py-2"> | |||||
<div class="float-lg-right text-lg-right mr-5" id="body-pic">{dede:field name='image'/}</div> | |||||
<p><small>所属区域:</small><span>{dede:field.nativeplace/}</span></p> | |||||
<p><small>信息类型:</small><span>{dede:field.infotype/}</span></p> | |||||
<p><small>点击数:</small><span id="_count">...</span></p> | |||||
<p><small>发布时间:</small><span>{dede:field.pubdate function="MyDate('y-m-d H:i',@me)"/} </span></p> | |||||
<p><small>截止日期:</small><span>{dede:field.endtime function="MyDate('Y-m-d H:m',@me)" /} </span></p> | |||||
<p><small>联系人:</small><span>{dede:field.linkman /}</span></p> | |||||
<p><small>联系电话:</small><span>{dede:field.tel /}</span></p> | |||||
<p><small>电子邮箱:</small><span>{dede:field.email/}</span></p> | |||||
<p><small>地址:</small><span>{dede:field.address /}</span></p> | |||||
<p>信息描述</p> | |||||
<div>{dede:field.body/}</div> | |||||
</div> | |||||
<!-- /.body --> | |||||
<div class="clearfix"></div> | |||||
{dede:include comment='文档顶踩模块' filename="widget_article_digg.htm"/} | |||||
<div class="row"> | |||||
<div class="col-md-4 prenext pt-2"> | |||||
<div class="pagination-previous">{dede:prenext get='pre'/}</div> | |||||
<div class="pagination-next mt-2">{dede:prenext get='next'/}</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="body py-2"> | |||||
<div class="float-lg-right text-lg-right mr-5" id="body-pic">{dede:field name='image'/}</div> | |||||
<p><small>所属区域:</small><span>{dede:field.nativeplace/}</span></p> | |||||
<p><small>信息类型:</small><span>{dede:field.infotype/}</span></p> | |||||
<p><small>点击数:</small><span id="_count">...</span></p> | |||||
<p><small>发布时间:</small><span>{dede:field.pubdate function="MyDate('y-m-d H:i',@me)"/} </span></p> | |||||
<p><small>截止日期:</small><span>{dede:field.endtime function="MyDate('Y-m-d H:m',@me)" /} </span></p> | |||||
<p><small>联系人:</small><span>{dede:field.linkman /}</span></p> | |||||
<p><small>联系电话:</small><span>{dede:field.tel /}</span></p> | |||||
<p><small>电子邮箱:</small><span>{dede:field.email/}</span></p> | |||||
<p><small>地址:</small><span>{dede:field.address /}</span></p> | |||||
<p>信息描述</p> | |||||
<div>{dede:field.body/}</div> | |||||
</div> | </div> | ||||
<div class="col-md-8"> | |||||
<div class="row actbox"> | |||||
<ul> | |||||
<li><i class="fa fa-star-o"></i> <a href="{dede:field name='phpurl'/}/stow.php?aid={dede:field.id/}" target="_blank">收藏</a></li> | |||||
<li><i class="fa fa-bug"></i> <a href="javascript:ErrorAddSave({dede:field.id/}, '{dede:field.title/}');">挑错</a> | |||||
</li> | |||||
<li><i class="fa fa-thumbs-o-up"></i> <a href="{dede:field name='phpurl'/}/recommend.php?aid={dede:field.id/}" target="_blank">推荐</a></li> | |||||
<li><i class="fa fa-print"></i> <a href="javascript:;" onClick="window.print();">打印</a></li> | |||||
</ul> | |||||
</div><!-- /actbox --> | |||||
<div class="clearfix"></div> | |||||
{dede:include comment='文档顶踩模块' filename="widget_article_digg.htm"/} | |||||
<div class="row"> | |||||
<div class="col-md-4 prenext pt-2"> | |||||
<div class="pagination-previous">{dede:prenext get='pre'/}</div> | |||||
<div class="pagination-next mt-2">{dede:prenext get='next'/}</div> | |||||
</div> | |||||
<div class="col-md-8"> | |||||
<div class="row actbox"> | |||||
<ul> | |||||
<li> | |||||
<i class="fa fa-star-o"></i> | |||||
<a href="{dede:field name='phpurl'/}/stow.php?aid={dede:field.id/}" target="_blank">收藏</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-bug"></i> | |||||
<a href="javascript:ErrorAddSave({dede:field.id/}, '{dede:field.title/}');">挑错</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-thumbs-o-up"></i> | |||||
<a href="{dede:field name='phpurl'/}/recommend.php?aid={dede:field.id/}" target="_blank">推荐</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-print"></i> | |||||
<a href="javascript:;" onClick="window.print();">打印</a> | |||||
</li> | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
</div> | </div> | ||||
{dede:include comment='文档评论模块' file='widget_article_feedback.htm' /} | |||||
</div> | </div> | ||||
{dede:include comment='文档评论模块' file='widget_article_feedback.htm' /} | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend_sg.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot_sg.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | </div> | ||||
<!-- /.article-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend_sg.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot_sg.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
<script> | |||||
//页面加载触发 | |||||
$(document).ready(function () { | |||||
//获取文档点击数统计 | |||||
$.get("{dede:field name='phpurl'/}/count.php?format=json&view=yes&aid={dede:field.id/}&mid=1&cid={dede:field.channel/}", function (data) { | |||||
let result = JSON.parse(data); | |||||
$("#_count").html(result.data.click); | |||||
}) | |||||
}); | |||||
</script> | |||||
</body> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
<script> | |||||
//页面加载触发 | |||||
$(document).ready(function() { | |||||
//获取文档点击数统计 | |||||
$.get("{dede:field name='phpurl'/}/count.php?format=json&view=yes&aid={dede:field.id/}&mid=1&cid={dede:field.channel/}", | |||||
function(data) { | |||||
let result = JSON.parse(data); | |||||
$("#_count").html(result.data.click); | |||||
}) | |||||
}); | |||||
</script> | |||||
</body> | |||||
</html> | </html> |
@@ -1,99 +1,106 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | </div> | ||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="body py-2"> | |||||
<div class="float-lg-right text-lg-right mr-5" id="body-pic">{dede:field name='image'/}</div> | |||||
<p><small>商品原价:</small><span>{dede:field.price/}</span></p> | |||||
<p><small>优惠价格:</small><span>{dede:field.trueprice/}</span></p> | |||||
<p><small>品牌:</small><span>{dede:field.brand/}</span></p> | |||||
<p><small>上架日期:</small><span>{dede:field.pubdate function="MyDate('y-m-d H:i',@me)"/}</span></p> | |||||
<p><small>人气:</small><span id="_count">...</span></p> | |||||
<form id="formcar" name="formcar" method="post" action="{dede:field name='phpurl'/}/posttocar.php"> | |||||
<input type="hidden" name="id" value="{dede:field.id/}"> | |||||
<input type="hidden" name="title" value="{dede:field.title/}"> | |||||
<input type="hidden" name="price" value="{dede:field.trueprice/}"> | |||||
<input type="hidden" name="units" value="{dede:field.units/}"> | |||||
<p><small>购物车:</small><span><a href="{dede:field name='phpurl'/}/car.php" target="_blank">查看购物车</a></span></p> | |||||
<p><small>购买:</small><span><button type="submit" name="button" class="btn btn-warning">放入购物车</button></span></p> | |||||
</form> | |||||
<p>商品介绍</p> | |||||
<div> | |||||
{dede:field.body/} | |||||
</div> | |||||
</div> | |||||
<!-- /.body --> | |||||
<div class="clearfix"></div> | |||||
{dede:include comment='文档顶踩模块' filename="widget_article_digg.htm"/} | |||||
<div class="row"> | |||||
<div class="col-md-4 prenext pt-2"> | |||||
<div class="pagination-previous">{dede:prenext get='pre'/}</div> | |||||
<div class="pagination-next mt-2">{dede:prenext get='next'/}</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="body py-2"> | |||||
<div class="float-lg-right text-lg-right mr-5" id="body-pic">{dede:field name='image'/}</div> | |||||
<p><small>商品原价:</small><span>{dede:field.price/}</span></p> | |||||
<p><small>优惠价格:</small><span>{dede:field.trueprice/}</span></p> | |||||
<p><small>品牌:</small><span>{dede:field.brand/}</span></p> | |||||
<p><small>上架日期:</small><span>{dede:field.pubdate function="MyDate('y-m-d H:i',@me)"/}</span></p> | |||||
<p><small>人气:</small><span id="_count">...</span></p> | |||||
<form id="formcar" name="formcar" method="post" action="{dede:field name='phpurl'/}/posttocar.php"> | |||||
<input type="hidden" name="id" value="{dede:field.id/}"> | |||||
<input type="hidden" name="title" value="{dede:field.title/}"> | |||||
<input type="hidden" name="price" value="{dede:field.trueprice/}"> | |||||
<input type="hidden" name="units" value="{dede:field.units/}"> | |||||
<p><small>购物车:</small><span><a href="{dede:field name='phpurl'/}/car.php" target="_blank">查看购物车</a></span></p> | |||||
<p><small>购买:</small><span><button type="submit" name="button" class="btn btn-warning">放入购物车</button></span></p> | |||||
</form> | |||||
<p>商品介绍</p> | |||||
<div> | |||||
{dede:field.body/} | |||||
</div> | |||||
</div> | </div> | ||||
<div class="col-md-8"> | |||||
<div class="row actbox"> | |||||
<ul> | |||||
<li><i class="fa fa-star-o"></i> <a href="{dede:field name='phpurl'/}/stow.php?aid={dede:field.id/}" target="_blank">收藏</a></li> | |||||
<li><i class="fa fa-bug"></i> <a href="javascript:ErrorAddSave({dede:field.id/}, '{dede:field.title/}');">挑错</a> | |||||
</li> | |||||
<li><i class="fa fa-thumbs-o-up"></i> <a href="{dede:field name='phpurl'/}/recommend.php?aid={dede:field.id/}" target="_blank">推荐</a></li> | |||||
<li><i class="fa fa-print"></i> <a href="javascript:;" onClick="window.print();">打印</a></li> | |||||
</ul> | |||||
</div><!-- /actbox --> | |||||
<div class="clearfix"></div> | |||||
{dede:include comment='文档顶踩模块' filename="widget_article_digg.htm"/} | |||||
<div class="row"> | |||||
<div class="col-md-4 prenext pt-2"> | |||||
<div class="pagination-previous">{dede:prenext get='pre'/}</div> | |||||
<div class="pagination-next mt-2">{dede:prenext get='next'/}</div> | |||||
</div> | |||||
<div class="col-md-8"> | |||||
<div class="row actbox"> | |||||
<ul> | |||||
<li> | |||||
<i class="fa fa-star-o"></i> | |||||
<a href="{dede:field name='phpurl'/}/stow.php?aid={dede:field.id/}" target="_blank">收藏</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-bug"></i> | |||||
<a href="javascript:ErrorAddSave({dede:field.id/}, '{dede:field.title/}');">挑错</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-thumbs-o-up"></i> | |||||
<a href="{dede:field name='phpurl'/}/recommend.php?aid={dede:field.id/}" target="_blank">推荐</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-print"></i> | |||||
<a href="javascript:;" onClick="window.print();">打印</a> | |||||
</li> | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
</div> | </div> | ||||
{dede:include comment='文档评论模块' file='widget_article_feedback.htm' /} | |||||
</div> | </div> | ||||
{dede:include comment='文档评论模块' file='widget_article_feedback.htm' /} | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | </div> | ||||
<!-- /.article-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
<script> | |||||
//页面加载触发 | |||||
$(document).ready(function () { | |||||
//获取文档点击数统计 | |||||
$.get("{dede:field name='phpurl'/}/count.php?format=json&view=yes&aid={dede:field.id/}&mid=1&cid={dede:field.channel/}", function (data) { | |||||
let result = JSON.parse(data); | |||||
$("#_count").html(result.data.click); | |||||
}) | |||||
}); | |||||
</script> | |||||
</body> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
<script> | |||||
//页面加载触发 | |||||
$(document).ready(function() { | |||||
//获取文档点击数统计 | |||||
$.get("{dede:field name='phpurl'/}/count.php?format=json&view=yes&aid={dede:field.id/}&mid=1&cid={dede:field.channel/}", | |||||
function(data) { | |||||
let result = JSON.parse(data); | |||||
$("#_count").html(result.data.click); | |||||
}) | |||||
}); | |||||
</script> | |||||
</body> | |||||
</html> | </html> |
@@ -1,102 +1,113 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | </div> | ||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="body py-2"> | |||||
<div class="float-right">{dede:field name='image'/}</div> | |||||
<p><small>软件类型:</small><span>{dede:field.softtype/}</span></p> | |||||
<p><small>授权方式:</small><span>{dede:field.accredit/}</span></p> | |||||
<p><small>界面语言:</small><span>{dede:field.language/}</span></p> | |||||
<p><small>软件大小:</small><span>{dede:field.softsize/}</span></p> | |||||
<p><small>文件类型:</small><span>{dede:field.filetype/}</span></p> | |||||
<p><small>运行环境:</small><span>{dede:field.os/}</span></p> | |||||
<p><small>软件等级:</small><span>{dede:field.softrank function='GetRankStar(@me)'/}</span></p> | |||||
<p><small>发布时间:</small><span>{dede:field.pubdate function="GetDateMk('@me')"/}</span></p> | |||||
<p><small>官方网址:</small><span>{dede:field.officialurl/}</span></p> | |||||
<p><small>演示网址:</small><span>{dede:field.officialdemo/}</span></p> | |||||
<p><small>下载次数:</small><span><script src="{dede:field.phpurl/}/disdls.php?aid={dede:field.id/}" language="javascript"></script></span></p> | |||||
<p><small>详细介绍:</small><span>{dede:field.introduce/}</span></p> | |||||
<p>下载说明</p> | |||||
<div class="alert alert-success"> | |||||
{dede:softmsg/} | |||||
</div> | |||||
<p>下载地址</p> | |||||
<ul class="downurllist"> | |||||
{dede:field name='softlinks'/} | |||||
</ul> | |||||
</div> | |||||
<!-- /.body --> | |||||
<div class="clearfix"></div> | |||||
{dede:include comment='文档顶踩模块' filename="widget_article_digg.htm"/} | |||||
<div class="row"> | |||||
<div class="col-md-4 prenext pt-2"> | |||||
<div class="pagination-previous">{dede:prenext get='pre'/}</div> | |||||
<div class="pagination-next mt-2">{dede:prenext get='next'/}</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="body py-2"> | |||||
<div class="float-right">{dede:field name='image'/}</div> | |||||
<p><small>软件类型:</small><span>{dede:field.softtype/}</span></p> | |||||
<p><small>授权方式:</small><span>{dede:field.accredit/}</span></p> | |||||
<p><small>界面语言:</small><span>{dede:field.language/}</span></p> | |||||
<p><small>软件大小:</small><span>{dede:field.softsize/}</span></p> | |||||
<p><small>文件类型:</small><span>{dede:field.filetype/}</span></p> | |||||
<p><small>运行环境:</small><span>{dede:field.os/}</span></p> | |||||
<p><small>软件等级:</small><span>{dede:field.softrank function='GetRankStar(@me)'/}</span></p> | |||||
<p><small>发布时间:</small><span>{dede:field.pubdate function="GetDateMk('@me')"/}</span></p> | |||||
<p><small>官方网址:</small><span>{dede:field.officialurl/}</span></p> | |||||
<p><small>演示网址:</small><span>{dede:field.officialdemo/}</span></p> | |||||
<p><small>下载次数:</small> | |||||
<span> | |||||
<script src="{dede:field.phpurl/}/disdls.php?aid={dede:field.id/}" language="javascript"></script> | |||||
</span> | |||||
</p> | |||||
<p><small>详细介绍:</small><span>{dede:field.introduce/}</span></p> | |||||
<p>下载说明</p> | |||||
<div class="alert alert-success"> | |||||
{dede:softmsg/} | |||||
</div> | |||||
<p>下载地址</p> | |||||
<ul class="downurllist"> | |||||
{dede:field name='softlinks'/} | |||||
</ul> | |||||
</div> | </div> | ||||
<div class="col-md-8"> | |||||
<div class="row actbox"> | |||||
<ul> | |||||
<li><i class="fa fa-star-o"></i> <a href="{dede:field name='phpurl'/}/stow.php?aid={dede:field.id/}" target="_blank">收藏</a></li> | |||||
<li><i class="fa fa-bug"></i> <a href="javascript:ErrorAddSave({dede:field.id/}, '{dede:field.title/}');">挑错</a> | |||||
</li> | |||||
<li><i class="fa fa-thumbs-o-up"></i> <a href="{dede:field name='phpurl'/}/recommend.php?aid={dede:field.id/}" target="_blank">推荐</a></li> | |||||
<li><i class="fa fa-print"></i> <a href="javascript:;" onClick="window.print();">打印</a></li> | |||||
</ul> | |||||
</div><!-- /actbox --> | |||||
<div class="clearfix"></div> | |||||
{dede:include comment='文档顶踩模块' filename="widget_article_digg.htm"/} | |||||
<div class="row"> | |||||
<div class="col-md-4 prenext pt-2"> | |||||
<div class="pagination-previous">{dede:prenext get='pre'/}</div> | |||||
<div class="pagination-next mt-2">{dede:prenext get='next'/}</div> | |||||
</div> | |||||
<div class="col-md-8"> | |||||
<div class="row actbox"> | |||||
<ul> | |||||
<li> | |||||
<i class="fa fa-star-o"></i> | |||||
<a href="{dede:field name='phpurl'/}/stow.php?aid={dede:field.id/}" target="_blank">收藏</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-bug"></i> | |||||
<a href="javascript:ErrorAddSave({dede:field.id/}, '{dede:field.title/}');">挑错</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-thumbs-o-up"></i> | |||||
<a href="{dede:field name='phpurl'/}/recommend.php?aid={dede:field.id/}" target="_blank">推荐</a> | |||||
</li> | |||||
<li> | |||||
<i class="fa fa-print"></i> | |||||
<a href="javascript:;" onClick="window.print();">打印</a> | |||||
</li> | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
</div> | </div> | ||||
{dede:include comment='文档评论模块' file='widget_article_feedback.htm' /} | |||||
</div> | </div> | ||||
{dede:include comment='文档评论模块' file='widget_article_feedback.htm' /} | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | </div> | ||||
<!-- /.article-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
<script> | |||||
//页面加载触发 | |||||
$(document).ready(function () { | |||||
//获取文档点击数统计 | |||||
$.get("{dede:field name='phpurl'/}/count.php?format=json&view=yes&aid={dede:field.id/}&mid=1&cid={dede:field.channel/}", function (data) { | |||||
let result = JSON.parse(data); | |||||
$("#_count").html(result.data.click); | |||||
}) | |||||
}); | |||||
</script> | |||||
</body> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
<script> | |||||
//页面加载触发 | |||||
$(document).ready(function() { | |||||
//获取文档点击数统计 | |||||
$.get("{dede:field name='phpurl'/}/count.php?format=json&view=yes&aid={dede:field.id/}&mid=1&cid={dede:field.channel/}", | |||||
function(data) { | |||||
let result = JSON.parse(data); | |||||
$("#_count").html(result.data.click); | |||||
}) | |||||
}); | |||||
</script> | |||||
</body> | |||||
</html> | </html> |
@@ -1,58 +1,53 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/bootstrap.bundle.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script>const PHPURL = '{dede:field name="phpurl"/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/bootstrap.bundle.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | </div> | ||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="article-meta"> | |||||
<small>时间:</small>{dede:field.pubdate function="MyDate('Y-m-d',@me)"/} | |||||
<small>来源:</small>{dede:field.source/} | |||||
<small>作者:</small>{dede:field.writer/} | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 article-main"> | |||||
<h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2> | |||||
<div class="article-meta"> | |||||
<small>时间:</small>{dede:field.pubdate function="MyDate('Y-m-d',@me)"/} | |||||
<small>来源:</small>{dede:field.source/} | |||||
<small>作者:</small>{dede:field.writer/} | |||||
</div> | |||||
<div class="speciallist row pt-2">{dede:field.note/}</div> | |||||
<div class="body py-2">{dede:field.body/}(责任编辑:{dede:adminname/})</div> | |||||
<div class="clearfix"></div> | |||||
</div> | </div> | ||||
<div class="speciallist row pt-2">{dede:field.note/}</div> | |||||
<div class="body py-2">{dede:field.body/}(责任编辑:{dede:adminname/})</div> | |||||
<!-- /.body --> | |||||
<div class="clearfix"></div> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | </div> | ||||
<!-- /.article-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -17,5 +17,4 @@ | |||||
</div> | </div> | ||||
</div> | </div> | ||||
</header> | </header> | ||||
</div> | |||||
<!-- /.header --> | |||||
</div> |
@@ -1,133 +1,132 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<title>{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<main class="container mt-3"> | |||||
<div class="index-main"> | |||||
<div class="col-12"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-8 litpics mb-3"> | |||||
<div id="carouselIndex" class="carousel slide" data-ride="carousel"> | |||||
<ol class="carousel-indicators"> | |||||
{dede:arclist channelid=1 flag='f' row=6} | |||||
<li data-target="#carouselIndex" data-slide-to="[field:global.autoindex function='trim(IndexSub(@me,1))'/]" class="[field:global.autoindex function='IndexActive(@me)'/]"></li> | |||||
{/dede:arclist} | |||||
</ol> | |||||
<div class="carousel-inner"> | |||||
{dede:arclist channelid=1 flag='f' row=6} | |||||
<div class="carousel-item[field:global.autoindex function='IndexActive(@me)'/]"> | |||||
<a href="[field:arcurl/]" title="[field:fulltitle/]"><img src="[field:litpic/]" class="mr-3" alt="[field:fulltitle/]"></a> | |||||
</div> | |||||
{/dede:arclist} | |||||
</div> | |||||
<a class="carousel-control-prev" href="#carouselIndex" role="button" data-slide="prev"> | |||||
<span class="carousel-control-prev-icon"></span> | |||||
<span class="sr-only">上一个</span> | |||||
</a> | |||||
<a class="carousel-control-next" href="#carouselIndex" role="button" data-slide="next"> | |||||
<span class="carousel-control-next-icon"></span> | |||||
<span class="sr-only">下一个</span> | |||||
</a> | |||||
</div> | |||||
</div> | |||||
<!-- /.litpics --> | |||||
<div class="col-12 col-lg-4 toutiao mb-3 mb-md-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-8 caption"><span>推荐头条</span></div> | |||||
</div> | |||||
</div> | |||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclist flag='h' titlelen='100' row='7' orderby='pubdate'} | |||||
<li><i class="fa fa-bookmark-o"></i> <a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclist} | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
<!-- /.toutiao --> | |||||
</div> | |||||
</div> | |||||
</div><!-- /.index-main --> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="spec row"> | |||||
<div class="col-md-12"> | |||||
<div class="dede-title"> | |||||
<h4 class="dede">图文资讯</h4> | |||||
</div> | |||||
</div> | |||||
<div class="col-md-12 mt-3"> | |||||
<div class="row row-cols-2 row-cols-md-4"> | |||||
{dede:arclist row=4 orderby=pubdate type='image.'} | |||||
<div class="col"> | |||||
<div class="card border-0 image-item"> | |||||
<a href="[field:arcurl/]" title="[field:fulltitle/]" | |||||
class="text-body stretched-link"><img src="[field:litpic/]" class="card-img-top" | |||||
alt="[field:fulltitle/]"> | |||||
<div class="card-body"> | |||||
<h6 class="card-title">[field:title/]</h6> | |||||
</div> | |||||
</a> | |||||
</div> | |||||
</div> | |||||
{/dede:arclist} | |||||
</div> | |||||
</div> | |||||
</div><!-- /.spec --> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-6 mt-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"><span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span></div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclist titlelen='60' row='8'} | |||||
<li><i class="fa fa-bookmark-o"></i> <a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclist} | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
{/dede:channelartlist} | |||||
</div> | |||||
</div><!-- /.index-left --> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='投票' filename="widget_vote.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside><!-- /aside --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
<div class="container-fluid flink mt-3"> | |||||
<div class="container py-3"> | |||||
友情连接:{dede:flink row='24'/} | |||||
</div> | |||||
</div> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<main class="container mt-3"> | |||||
<div class="index-main"> | |||||
<div class="col-12"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-8 litpics mb-3"> | |||||
<div id="carouselIndex" class="carousel slide" data-ride="carousel"> | |||||
<ol class="carousel-indicators"> | |||||
{dede:arclist channelid=1 flag='f' row=6} | |||||
<li data-target="#carouselIndex" data-slide-to="[field:global.autoindex function='trim(IndexSub(@me,1))'/]" class="[field:global.autoindex function='IndexActive(@me)'/]"></li> | |||||
{/dede:arclist} | |||||
</ol> | |||||
<div class="carousel-inner"> | |||||
{dede:arclist channelid=1 flag='f' row=6} | |||||
<div class="carousel-item[field:global.autoindex function='IndexActive(@me)'/]"> | |||||
<a href="[field:arcurl/]" title="[field:fulltitle/]"><img src="[field:litpic/]" class="mr-3" alt="[field:fulltitle/]"></a> | |||||
</div> | |||||
{/dede:arclist} | |||||
</div> | |||||
<a class="carousel-control-prev" href="#carouselIndex" role="button" data-slide="prev"> | |||||
<span class="carousel-control-prev-icon"></span> | |||||
<span class="sr-only">上一个</span> | |||||
</a> | |||||
<a class="carousel-control-next" href="#carouselIndex" role="button" data-slide="next"> | |||||
<span class="carousel-control-next-icon"></span> | |||||
<span class="sr-only">下一个</span> | |||||
</a> | |||||
</div> | |||||
</div> | |||||
<div class="col-12 col-lg-4 toutiao mb-3 mb-md-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-8 caption"><span>推荐头条</span></div> | |||||
</div> | |||||
</div> | |||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclist flag='h' titlelen='100' row='7' orderby='pubdate'} | |||||
<li> | |||||
<i class="fa fa-bookmark-o"></i> | |||||
<a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclist} | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="spec row"> | |||||
<div class="col-md-12"> | |||||
<div class="dede-title"> | |||||
<h4 class="dede">图文资讯</h4> | |||||
</div> | |||||
</div> | |||||
<div class="col-md-12 mt-3"> | |||||
<div class="row row-cols-2 row-cols-md-4"> | |||||
{dede:arclist row=4 orderby=pubdate type='image.'} | |||||
<div class="col"> | |||||
<div class="card border-0 image-item"> | |||||
<a href="[field:arcurl/]" title="[field:fulltitle/]" class="text-body stretched-link"><img src="[field:litpic/]" class="card-img-top" alt="[field:fulltitle/]"> | |||||
<div class="card-body"> | |||||
<h6 class="card-title">[field:title/]</h6> | |||||
</div> | |||||
</a> | |||||
</div> | |||||
</div> | |||||
{/dede:arclist} | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-6 mt-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"> | |||||
<span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span> | |||||
</div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclist titlelen='60' row='8'} | |||||
<li> | |||||
<i class="fa fa-bookmark-o"></i> | |||||
<a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclist} | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
{/dede:channelartlist} | |||||
</div> | |||||
</div> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='投票' filename="widget_vote.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
<div class="container-fluid flink mt-3"> | |||||
<div class="container py-3">友情连接:{dede:flink row='24'/}</div> | |||||
</div> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,67 +1,69 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-6 mb-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"><span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span></div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclist titlelen='60' row='8'} | |||||
<li><i class="fa fa-bookmark-o"></i> <a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclist} | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
{/dede:channelartlist} | |||||
</div> | |||||
</div><!-- /.index-left --> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside><!-- /aside --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-6 mb-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"> | |||||
<span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span> | |||||
</div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclist titlelen='60' row='8'} | |||||
<li> | |||||
<i class="fa fa-bookmark-o"></i> | |||||
<a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclist} | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
{/dede:channelartlist} | |||||
</div> | |||||
</div> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,67 +1,69 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | </div> | ||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-6 mb-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"><span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span></div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclist titlelen='60' row='8'} | |||||
<li><i class="fa fa-bookmark-o"></i> <a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclist} | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
{/dede:channelartlist} | |||||
</div> | |||||
</div><!-- /.index-left --> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside><!-- /aside --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-6 mb-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"> | |||||
<span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span> | |||||
</div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclist titlelen='60' row='8'} | |||||
<li> | |||||
<i class="fa fa-bookmark-o"></i> | |||||
<a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclist} | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
{/dede:channelartlist} | |||||
</div> | |||||
</div> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,67 +1,69 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | </div> | ||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-6 mt-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"><span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span></div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-6 mt-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"> | |||||
<span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span> | |||||
</div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
</div> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclistsg titlelen='60' row='8'} | |||||
<li> | |||||
<i class="fa fa-bookmark-o"></i> | |||||
<a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclistsg} | |||||
</ul> | |||||
</div> | </div> | ||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclistsg titlelen='60' row='8'} | |||||
<li><i class="fa fa-bookmark-o"></i> <a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclistsg} | |||||
</ul> | |||||
</div> | </div> | ||||
{/dede:channelartlist} | |||||
</div> | </div> | ||||
{/dede:channelartlist} | |||||
</div> | </div> | ||||
</div><!-- /.index-left --> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend_sg.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot_sg.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside><!-- /aside --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend_sg.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot_sg.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,75 +1,75 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-12 mb-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"><span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span></div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<div class="row row-cols-2 row-cols-md-4 pt-3"> | |||||
{dede:arclist row=4} | |||||
<div class="col"> | |||||
<div class="card border-0 image-item"> | |||||
<a href="[field:arcurl/]" title="[field:fulltitle/]" class="text-body stretched-link"><img | |||||
src="[field:litpic/]" class="card-img-top" alt="[field:fulltitle/]"> | |||||
<div class="card-body"> | |||||
<h6 class="card-title">[field:title/]</h6> | |||||
</div> | |||||
</a> | |||||
</div> | |||||
</div> | |||||
{/dede:arclist} | |||||
</div> | |||||
</div> | |||||
</div> | |||||
{/dede:channelartlist} | |||||
</div> | |||||
</div><!-- /.index-left --> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside><!-- /aside --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-12 mb-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"> | |||||
<span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span> | |||||
</div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<div class="row row-cols-2 row-cols-md-4 pt-3"> | |||||
{dede:arclist row=4} | |||||
<div class="col"> | |||||
<div class="card border-0 image-item"> | |||||
<a href="[field:arcurl/]" title="[field:fulltitle/]" class="text-body stretched-link"> | |||||
<img src="[field:litpic/]" class="card-img-top" alt="[field:fulltitle/]"> | |||||
<div class="card-body"> | |||||
<h6 class="card-title">[field:title/]</h6> | |||||
</div> | |||||
</a> | |||||
</div> | |||||
</div> | |||||
{/dede:arclist} | |||||
</div> | |||||
</div> | |||||
</div> | |||||
{/dede:channelartlist} | |||||
</div> | |||||
</div> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,67 +1,69 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-6 mb-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"><span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span></div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclistsg titlelen='60' row='8'} | |||||
<li><i class="fa fa-bookmark-o"></i> <a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclistsg} | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
{/dede:channelartlist} | |||||
</div> | |||||
</div><!-- /.index-left --> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend_sg.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot_sg.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside><!-- /aside --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-6 mb-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"> | |||||
<span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span> | |||||
</div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclistsg titlelen='60' row='8'} | |||||
<li> | |||||
<i class="fa fa-bookmark-o"></i> | |||||
<a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclistsg} | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
{/dede:channelartlist} | |||||
</div> | |||||
</div> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend_sg.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot_sg.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,67 +1,69 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-6 mb-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"><span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span></div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclist titlelen='60' row='8'} | |||||
<li><i class="fa fa-bookmark-o"></i> <a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclist} | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
{/dede:channelartlist} | |||||
</div> | |||||
</div><!-- /.index-left --> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside><!-- /aside --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-6 mb-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"> | |||||
<span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span> | |||||
</div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclist titlelen='60' row='8'} | |||||
<li> | |||||
<i class="fa fa-bookmark-o"></i> | |||||
<a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclist} | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
{/dede:channelartlist} | |||||
</div> | |||||
</div> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,67 +1,69 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-6 mb-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"><span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span></div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclist titlelen='60' row='8'} | |||||
<li><i class="fa fa-bookmark-o"></i> <a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclist} | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
{/dede:channelartlist} | |||||
</div> | |||||
</div><!-- /.index-left --> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside><!-- /aside --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:global.cfg_keywords/}"> | |||||
<meta name="description" content="{dede:global.cfg_description/}"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/index.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-12 col-lg-9 index-left"> | |||||
<div class="row"> | |||||
{dede:channelartlist} | |||||
<div class="col-md-6 mb-3"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-6 caption"> | |||||
<span><a href="{dede:field name='typeurl'/}">{dede:field name='typename'/}</a></span> | |||||
</div> | |||||
<div class="col-6 d-flex justify-content-end more"> | |||||
<a href="{dede:field name='typeurl'/}">更多</a> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<ul class="list-group list-group-flush"> | |||||
{dede:arclist titlelen='60' row='8'} | |||||
<li> | |||||
<i class="fa fa-bookmark-o"></i> | |||||
<a title="[field:fulltitle/]" href="[field:arcurl/]">[field:title/]</a> | |||||
</li> | |||||
{/dede:arclist} | |||||
</ul> | |||||
</div> | |||||
</div> | |||||
{/dede:channelartlist} | |||||
</div> | |||||
</div> | |||||
<aside class="col-12 col-lg-3"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,73 +1,69 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="utf-8"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'} if(@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed"> | |||||
<div class="media-body row mt-2 py-2"> | |||||
<div class="col-12 caption"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="title">[field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description"> | |||||
<a href="[field:arcurl/]"> | |||||
[field:description/]... | |||||
</a> | |||||
</div> | |||||
<div class="col-12 source text-right"> | |||||
发布时间:[field:pubdate function="MyDate('y-m-d',@me)"/] | |||||
</div> | |||||
</div> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<!-- /.list-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'}if (@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed"> | |||||
<div class="media-body row mt-2 py-2"> | |||||
<div class="col-12 caption"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="title">[field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description"> | |||||
<a href="[field:arcurl/]"> | |||||
[field:description/]... | |||||
</a> | |||||
</div> | |||||
<div class="col-12 source text-right"> | |||||
发布时间:[field:pubdate function="MyDate('y-m-d',@me)"/] | |||||
</div> | |||||
</div> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,72 +1,68 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="utf-8"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'} if(@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed"> | |||||
<div class="media-body row mt-2 py-2"> | |||||
<div class="col-12 caption"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="title">[field:code/] [field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description"> | |||||
<a href="[field:arcurl/]">[field:description/]... | |||||
</a> | |||||
</div> | |||||
<div class="col-12 source text-right"> | |||||
发布时间:[field:pubdate function="MyDate('y-m-d',@me)"/] | |||||
</div> | |||||
</div> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<!-- /.list-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'}if (@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed"> | |||||
<div class="media-body row mt-2 py-2"> | |||||
<div class="col-12 caption"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="title">[field:code/] [field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description"> | |||||
<a href="[field:arcurl/]">[field:description/]... | |||||
</a> | |||||
</div> | |||||
<div class="col-12 source text-right"> | |||||
发布时间:[field:pubdate function="MyDate('y-m-d',@me)"/] | |||||
</div> | |||||
</div> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,72 +1,68 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="utf-8"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'} if(@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed"> | |||||
<div class="media-body row mt-2 py-2"> | |||||
<div class="col-12 caption"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="title">[field:code/] [field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description"> | |||||
<a href="[field:arcurl/]">[field:description/]... | |||||
</a> | |||||
</div> | |||||
<div class="col-12 source text-right"> | |||||
发布时间:[field:pubdate function="MyDate('y-m-d',@me)"/] | |||||
</div> | |||||
</div> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<!-- /.list-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend_sg.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot_sg.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'}if (@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed"> | |||||
<div class="media-body row mt-2 py-2"> | |||||
<div class="col-12 caption"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="title">[field:code/] [field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description"> | |||||
<a href="[field:arcurl/]">[field:description/]... | |||||
</a> | |||||
</div> | |||||
<div class="col-12 source text-right"> | |||||
发布时间:[field:pubdate function="MyDate('y-m-d',@me)"/] | |||||
</div> | |||||
</div> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend_sg.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot_sg.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,55 +1,51 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="utf-8"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'} if(@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:freelist/} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<!-- /.list-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'}if (@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:freelist/} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,66 +1,62 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="utf-8"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'} if(@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<div class="row row-cols-2 row-cols-md-4"> | |||||
{dede:list pagesize='12'} | |||||
<div class="col"> | |||||
<div class="card border-0 image-item"> | |||||
<a href="[field:arcurl/]" title="[field:fulltitle/]" class="text-body stretched-link"><img | |||||
src="[field:litpic/]" class="card-img-top" alt="[field:fulltitle/]"> | |||||
<div class="card-body"> | |||||
<h6 class="card-title">[field:title/]</h6> | |||||
</div> | |||||
</a> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'}if (@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<div class="row row-cols-2 row-cols-md-4"> | |||||
{dede:list pagesize='12'} | |||||
<div class="col"> | |||||
<div class="card border-0 image-item"> | |||||
<a href="[field:arcurl/]" title="[field:fulltitle/]" class="text-body stretched-link"> | |||||
<img src="[field:litpic/]" class="card-img-top" alt="[field:fulltitle/]"> | |||||
<div class="card-body"> | |||||
<h6 class="card-title">[field:title/]</h6> | |||||
</div> | |||||
</a> | |||||
</div> | |||||
</div> | </div> | ||||
{/dede:list} | |||||
</div> | </div> | ||||
{/dede:list} | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | </div> | ||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<!-- /.list-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,129 +1,118 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="utf-8"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'} if(@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<style> | |||||
.dedeinfolink a { | |||||
color: #28a745; | |||||
margin-right: 10px; | |||||
} | |||||
.info-search .info-guide { | |||||
line-height: 32px; | |||||
} | |||||
</style> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'}if (@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<style> | |||||
.dedeinfolink a { | |||||
color: #28a745; | |||||
margin-right: 10px; | |||||
} | |||||
.info-search .info-guide { | |||||
line-height: 32px; | |||||
} | |||||
</style> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | </div> | ||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
{dede:infolink} | |||||
<table class="dedeinfolink table table-borderless"> | |||||
<tr class="table-success"> | |||||
<td colspan='3' class='iftitle'> | |||||
信息附加条件: | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td width='80'>地 区:</td> | |||||
<td align='center' nowrap='yes'> | |||||
<div>[field:linkallplace/]</div> | |||||
</td> | |||||
<td> | |||||
[field:nativeplace /] | |||||
</td> | |||||
</tr> | |||||
<tr> | |||||
<td>类 型:</td> | |||||
<td align='center' nowrap='yes'> | |||||
<div>[field:linkalltype/]</div> | |||||
</td> | |||||
<td> | |||||
[field:infotype /] | |||||
</td> | |||||
</tr> | |||||
</table> | |||||
{/dede:infolink} | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed"> | |||||
<div class="media-body row mt-2 py-2"> | |||||
<div class="col-12 caption"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="title">[field:code/] [field:title/]</h4> | |||||
</a> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
{dede:infolink} | |||||
<table class="dedeinfolink table table-borderless"> | |||||
<tr class="table-success"> | |||||
<td colspan="3" class="iftitle">信息附加条件:</td> | |||||
</tr> | |||||
<tr> | |||||
<td width="80">地区:</td> | |||||
<td align="center" nowrap="yes"> | |||||
<div>[field:linkallplace/]</div> | |||||
</td> | |||||
<td>[field:nativeplace /]</td> | |||||
</tr> | |||||
<tr> | |||||
<td>类型:</td> | |||||
<td align="center" nowrap="yes"> | |||||
<div>[field:linkalltype/]</div> | |||||
</td> | |||||
<td>[field:infotype /]</td> | |||||
</tr> | |||||
</table> | |||||
{/dede:infolink} | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed"> | |||||
<div class="media-body row mt-2 py-2"> | |||||
<div class="col-12 caption"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="title">[field:code/] [field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 source text-right"> | |||||
发布时间:[field:pubdate function="MyDate('y-m-d',@me)"/] | |||||
</div> | |||||
</div> | </div> | ||||
<div class="col-12 source text-right"> | |||||
发布时间:[field:pubdate function="MyDate('y-m-d',@me)"/] | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
<div class="info-search card ddcard pt-3 mt-3"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-12 caption"><span>信息搜索</span></div> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<!-- /.list-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
<div class="info-search card ddcard pt-3 mt-3"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-12 caption"><span>信息搜索</span></div> | |||||
<div class="info-guide mt-2"> | |||||
{dede:infoguide} | |||||
<form name="infoguide" method="get" action="/apps/list.php"> | |||||
[field:nativeplace/] | |||||
[field:infotype/] | |||||
<input type="hidden" name="tid" value="[field:typeid/]"> | |||||
<input type="hidden" name="channelid" value="-8"> | |||||
<div class="form-group"> | |||||
<label for="iptKeyword">关键词</label> | |||||
<input type="text" name="keyword" class="form-control" id="iptKeyword"> | |||||
</div> | |||||
<button type='submit' class="btn btn-warning btn-sm">搜索信息</button> | |||||
<button type='button' class="btn btn-warning btn-sm" onclick="location='/user/archives_sg_add.php?channelid=-8';">发布信息</button> | |||||
</form> | |||||
{/dede:infoguide} | |||||
</div> | </div> | ||||
</div> | </div> | ||||
<div class="info-guide mt-2"> | |||||
{dede:infoguide} | |||||
<form name='infoguide' method='get' action='/apps/list.php'> | |||||
[field:nativeplace /] | |||||
[field:infotype /] | |||||
<input type='hidden' name='tid' value='[field:typeid /]'> | |||||
<input type='hidden' name='channelid' value='-8'> | |||||
<div class="form-group"> | |||||
<label for="iptKeyword">关键词</label> | |||||
<input type="text" name="keyword" class="form-control" id="iptKeyword"> | |||||
</div> | |||||
<button type='submit' class="btn btn-warning btn-sm">搜索信息</button> | |||||
| |||||
<button type='button' class="btn btn-warning btn-sm" | |||||
onclick="location='/user/archives_sg_add.php?channelid=-8';">发布信息</button> | |||||
</form> | |||||
{/dede:infoguide} | |||||
</div> | |||||
</div><!-- /.info-search --> | |||||
{dede:include comment='推荐内容' filename="widget_recommend_sg.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot_sg.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
{dede:include comment='推荐内容' filename="widget_recommend_sg.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot_sg.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,74 +1,71 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="utf-8"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'} if(@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed mt-2 py-2"> | |||||
<a href="[field:arcurl/]"><img src="[field:litpic/]" class="mr-3" alt="[field:title/]"></a> | |||||
<div class="media-body row"> | |||||
<div class="col-12 title"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="mt-0 mb-3">[field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description py-2"> | |||||
<a href="[field:arcurl/]"> | |||||
[field:description/]... | |||||
</a> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'}if (@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed mt-2 py-2"> | |||||
<a href="[field:arcurl/]"><img src="[field:litpic/]" class="mr-3" alt="[field:title/]"></a> | |||||
<div class="media-body row"> | |||||
<div class="col-12 title"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="mt-0 mb-3">[field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description py-2"> | |||||
<a href="[field:arcurl/]"> | |||||
[field:description/]... | |||||
</a> | |||||
</div> | |||||
<div class="col-12 addinfo"> | |||||
日期:[field:pubdate function="MyDate('Y-m-d', @me)"/] 价格:[field:trueprice/] | |||||
品牌:[field:brand/] 人气:[field:click/] | |||||
</div> | |||||
</div> | </div> | ||||
<div class="col-12 addinfo"> | |||||
日期:[field:pubdate function="MyDate('Y-m-d', @me)"/] 价格:[field:trueprice/] 品牌:[field:brand/] 人气:[field:click/] | |||||
</div> | |||||
</div> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<!-- /.list-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,74 +1,71 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="utf-8"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'} if(@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed mt-2 py-2"> | |||||
<a href="[field:arcurl/]"><img src="[field:litpic/]" class="mr-3" alt="[field:title/]"></a> | |||||
<div class="media-body row"> | |||||
<div class="col-12 title"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="mt-0 mb-3">[field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description py-2"> | |||||
<a href="[field:arcurl/]"> | |||||
[field:description/]... | |||||
</a> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'}if (@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
{dede:field name='position'/} | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed mt-2 py-2"> | |||||
<a href="[field:arcurl/]"><img src="[field:litpic/]" class="mr-3" alt="[field:title/]"></a> | |||||
<div class="media-body row"> | |||||
<div class="col-12 title"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="mt-0 mb-3">[field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description py-2"> | |||||
<a href="[field:arcurl/]"> | |||||
[field:description/]... | |||||
</a> | |||||
</div> | |||||
<div class="col-12 addinfo"> | |||||
上传日期:[field:pubdate function="MyDate('Y-m-d', @me)"/] 推荐级别:[field:softrank | |||||
function='GetRankStar(@me)'/] 软件语言:[field:language/] | |||||
</div> | |||||
</div> | </div> | ||||
<div class="col-12 addinfo"> | |||||
上传日期:[field:pubdate function="MyDate('Y-m-d', @me)"/] 推荐级别:[field:softrank function='GetRankStar(@me)'/] 软件语言:[field:language/] | |||||
</div> | |||||
</div> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<!-- /.list-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,75 +1,71 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="utf-8"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>专题-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
<li class="breadcrumb-item"><a href="{dede:global.cfg_cmsurl/}/">首页</a></li> | |||||
<li class="breadcrumb-item">专题</li> | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed mt-2 py-2 list-image"> | |||||
<a href="[field:arcurl/]"><img src="[field:litpic/]" class="mr-3" alt="[field:title/]"></a> | |||||
<div class="media-body row"> | |||||
<div class="col-12 title"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="mt-0 mb-3">[field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description py-2"> | |||||
<a href="[field:arcurl/]"> | |||||
[field:description/]... | |||||
</a> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>专题-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
<li class="breadcrumb-item"><a href="{dede:global.cfg_cmsurl/}/">首页</a></li> | |||||
<li class="breadcrumb-item">专题</li> | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed mt-2 py-2 list-image"> | |||||
<a href="[field:arcurl/]"><img src="[field:litpic/]" class="mr-3" alt="[field:title/]"></a> | |||||
<div class="media-body row"> | |||||
<div class="col-12 title"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="mt-0 mb-3">[field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description py-2"> | |||||
<a href="[field:arcurl/]"> | |||||
[field:description/]... | |||||
</a> | |||||
</div> | |||||
<div class="col-12 addinfo"> | |||||
上传日期:[field:pubdate function="MyDate('Y-m-d', @me)"/] | |||||
</div> | |||||
</div> | </div> | ||||
<div class="col-12 addinfo"> | |||||
上传日期:[field:pubdate function="MyDate('Y-m-d', @me)"/] | |||||
</div> | |||||
</div> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<!-- /.list-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='栏目列表' filename="widget_channels.htm"/} | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
{dede:include comment='QR二维码' filename="widget_qrcode.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -17,5 +17,4 @@ | |||||
</ul> | </ul> | ||||
</div> | </div> | ||||
</div> | </div> | ||||
</nav> | |||||
<!--/.navbar--> | |||||
</nav> |
@@ -1,68 +1,62 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="utf-8"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>搜索{dede:global name='keyword'/}结果-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'} if(@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global name='cfg_webname'/}</title> | |||||
<meta name="keywords" content="{dede:field name='keywords'/}"> | |||||
<meta name="description" content="{dede:field name='description' function='html2text(@me)'/}"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
<li class="breadcrumb-item"><a href="{dede:global.cfg_cmsurl/}/">主页</a></li> | |||||
<li class="breadcrumb-item">搜索 <strong class="fc_03c">{dede:global name='keyword' function='RemoveXSS(@me)'/} 的结果</li> | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed"> | |||||
<div class="media-body row mt-2 py-2"> | |||||
<div class="col-12 caption"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="title">[field:code/] [field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description"> | |||||
<a href="[field:arcurl/]">[field:description/]... | |||||
</a> | |||||
</div> | |||||
</div> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<!-- <ul class="pagination justify-content-center py-3"> --> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
<!-- </ul> --> | |||||
</nav> | |||||
</div> | |||||
<!-- /.list-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>搜索{dede:global name='keyword'/}结果-{dede:global name='cfg_webname'/}</title> | |||||
<meta name="keywords" content="{dede:field name='keywords'/}"> | |||||
<meta name="description" content="{dede:field name='description' function='html2text(@me)'/}"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
<li class="breadcrumb-item"><a href="{dede:global.cfg_cmsurl/}/">主页</a></li> | |||||
<li class="breadcrumb-item">搜索 {dede:global name='keyword' function='RemoveXSS(@me)'/} 的结果</li> | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed"> | |||||
<div class="media-body row mt-2 py-2"> | |||||
<div class="col-12 caption"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="title">[field:code/] [field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description"> | |||||
<a href="[field:arcurl/]">[field:description/]... | |||||
</a> | |||||
</div> | |||||
</div> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</nav> | |||||
</div> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,51 +1,50 @@ | |||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||||
<head> | |||||
<meta http-equiv="Content-Type" content="text/html; charset={dede:global.cfg_soft_lang/}"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<link href="{dede:global.cfg_templets_skin/}/style/dedecms.css" rel="stylesheet" media="screen"> | |||||
<script language='javascript' type='text/javascript'> | |||||
function checkSubmit(){ | |||||
if(document.feedback.msg.value!='') document.feedback.submit(); | |||||
else alert("评论内容不能为空"); | |||||
} | |||||
</script> | |||||
</head> | |||||
<body class="articleview"> | |||||
{dede:include filename="head.htm"/} | |||||
<!-- /header --> | |||||
<div class="w960 center clear mt1"> | |||||
<div class="pleft"> | |||||
<div class="place"> | |||||
当前位置: <a href='/'>主页</a>>{dede:field name='title'/} | |||||
</div><!-- /place --> | |||||
<div class="viewbox"> | |||||
<div class="title"> | |||||
<h2>{dede:field.title/}</h2> | |||||
</div><!-- /title --> | |||||
<div class="content"> | |||||
{dede:field.body/} | |||||
</div> | |||||
</div><!-- /viewbox --> | |||||
</div> | |||||
<div class="pright"> | |||||
<div class="hot mt1"> | |||||
<dl class="tbox"> | |||||
<dt>相关页面</dt> | |||||
<dd> | |||||
<ul class="c1 ico2"> | |||||
{dede:likesgpage} | |||||
<li><a href="[field:url /]">[field:title /]</a></li> | |||||
{/dede:likesgpage} | |||||
</ul> | |||||
</dd> | |||||
</dl> | |||||
<!DOCTYPE html> | |||||
<html> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<link href="{dede:global.cfg_templets_skin/}/style/dedecms.css" rel="stylesheet" media="screen"> | |||||
<script language='javascript' type='text/javascript'> | |||||
function checkSubmit() { | |||||
if (document.feedback.msg.value != '') document.feedback.submit(); | |||||
else alert("评论内容不能为空"); | |||||
} | |||||
</script> | |||||
</head> | |||||
<body class="articleview"> | |||||
{dede:include filename="head.htm"/} | |||||
<div class="w960 center clear mt1"> | |||||
<div class="pleft"> | |||||
<div class="place"> | |||||
当前位置: <a href="/">主页</a> > {dede:field name='title'/} | |||||
</div> | |||||
<div class="viewbox"> | |||||
<div class="title"> | |||||
<h2>{dede:field.title/}</h2> | |||||
</div> | |||||
<div class="content"> | |||||
{dede:field.body/} | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<div class="pright"> | |||||
<div class="hot mt1"> | |||||
<dl class="tbox"> | |||||
<dt>相关页面</dt> | |||||
<dd> | |||||
<ul class="c1 ico2"> | |||||
{dede:likesgpage} | |||||
<li><a href="[field:url/]">[field:title/]</a></li> | |||||
{/dede:likesgpage} | |||||
</ul> | |||||
</dd> | |||||
</dl> | |||||
</div> | |||||
</div> | |||||
</div> | </div> | ||||
</div><!-- /pright --> | |||||
</div> | |||||
{dede:include filename="footer.htm"/} | |||||
<!-- /footer --> | |||||
</body> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,128 +1,110 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="utf-8"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script>const currentNavTypeID = '{dede:field.id/}';</script> | |||||
<style> | |||||
.tags { | |||||
padding-top: 10px; | |||||
} | |||||
.tags a { | |||||
float: left; | |||||
margin: 5px 10px; | |||||
} | |||||
.tagc1 { | |||||
color: darkolivegreen; | |||||
} | |||||
.tagc2 { | |||||
color: blue; | |||||
} | |||||
.tagc3 { | |||||
color: blueviolet; | |||||
} | |||||
.tagc4 { | |||||
color: brown; | |||||
} | |||||
.tagc5 { | |||||
color: cadetblue; | |||||
} | |||||
.tagc6 { | |||||
color: green; | |||||
} | |||||
.tagc7 { | |||||
color: coral; | |||||
} | |||||
.tagc8 { | |||||
color: cornflowerblue; | |||||
} | |||||
.tagc9 { | |||||
color: black; | |||||
} | |||||
} | |||||
.tagc9 { | |||||
color: deeppink; | |||||
} | |||||
</style> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
<li class="breadcrumb-item">TAG标签</li> | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container mb-2"> | |||||
<div class="row"> | |||||
<div class="col-md-12 list-main"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-8 caption"><span>最新标签</span></div> | |||||
</div> | |||||
</div> | |||||
<div class="tags"> | |||||
{dede:tag row='120' sort='new'} | |||||
<a href='[field:link/]' class='tagc[field:highlight /]'>[field:tag /]</a> | |||||
{/dede:tag} | |||||
</div> | |||||
</div> | |||||
<div class="card ddcard-normal mt-3"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-8 caption"><span>当月热门标签</span></div> | |||||
</div> | |||||
</div> | |||||
<div class="tags"> | |||||
{dede:tag row='120' sort='month'} | |||||
<a href='[field:link/]' class='tagc[field:highlight /]'>[field:tag /]</a> | |||||
{/dede:tag} | |||||
</div> | |||||
</div> | |||||
<div class="card ddcard-normal mt-3"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-8 caption"><span>随机标签</span></div> | |||||
</div> | |||||
</div> | |||||
<div class="tags"> | |||||
{dede:tag row='120' sort='rand'} | |||||
<a href='[field:link/]' class='tagc[field:highlight /]'>[field:tag /]</a> | |||||
{/dede:tag} | |||||
</div> | |||||
</div> | |||||
</div> | |||||
<!-- /.list-main --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script>const currentNavTypeID = '{dede:field.id/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<style> | |||||
.tags { | |||||
padding-top: 10px; | |||||
} | |||||
.tags a { | |||||
float: left; | |||||
margin: 5px 10px; | |||||
} | |||||
.tagc1 { | |||||
color: darkolivegreen; | |||||
} | |||||
.tagc2 { | |||||
color: blue; | |||||
} | |||||
.tagc3 { | |||||
color: blueviolet; | |||||
} | |||||
.tagc4 { | |||||
color: brown; | |||||
} | |||||
.tagc5 { | |||||
color: cadetblue; | |||||
} | |||||
.tagc6 { | |||||
color: green; | |||||
} | |||||
.tagc7 { | |||||
color: coral; | |||||
} | |||||
.tagc8 { | |||||
color: cornflowerblue; | |||||
} | |||||
.tagc9 { | |||||
color: black; | |||||
} | |||||
</style> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
<li class="breadcrumb-item">TAG标签</li> | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container mb-3"> | |||||
<div class="row"> | |||||
<div class="col-md-12 list-main"> | |||||
<div class="card ddcard-normal"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-8 caption"><span>最新标签</span></div> | |||||
</div> | |||||
</div> | |||||
<div class="tags"> | |||||
{dede:tag row='120' sort='new'} | |||||
<a href="[field:link/]" class="tagc[field:highlight/]">[field:tag/]</a> | |||||
{/dede:tag} | |||||
</div> | |||||
</div> | |||||
<div class="card ddcard-normal mt-3"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-8 caption"><span>当月热门标签</span></div> | |||||
</div> | |||||
</div> | |||||
<div class="tags"> | |||||
{dede:tag row='120' sort='month'} | |||||
<a href="[field:link/]" class="tagc[field:highlight/]">[field:tag/]</a> | |||||
{/dede:tag} | |||||
</div> | |||||
</div> | |||||
<div class="card ddcard-normal mt-3"> | |||||
<div class="card-header"> | |||||
<div class="row"> | |||||
<div class="col-8 caption"><span>随机标签</span></div> | |||||
</div> | |||||
</div> | |||||
<div class="tags"> | |||||
{dede:tag row='120' sort='rand'} | |||||
<a href="[field:link/]" class="tagc[field:highlight/]">[field:tag/]</a> | |||||
{/dede:tag} | |||||
</div> | |||||
</div> | |||||
</div> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -1,73 +1,68 @@ | |||||
<!DOCTYPE html> | <!DOCTYPE html> | ||||
<html> | <html> | ||||
<head> | |||||
<meta charset="utf-8"> | |||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'} if(@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script>const currentNavTypeID = '{dede:field.id/}';</script> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
<li class="breadcrumb-item"><a href='/apps/tags.php'>TAG标签</a></li> | |||||
<li class="breadcrumb-item">{dede:field.title /}</li> | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
<!-- /.position --> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed"> | |||||
<div class="media-body row mt-2 py-2"> | |||||
<div class="col-12 caption"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="title">[field:code/] [field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description"> | |||||
<a href="[field:arcurl/]">[field:description/]... | |||||
</a> | |||||
</div> | |||||
<div class="col-12 source text-right"> | |||||
发布时间:[field:pubdate function="MyDate('y-m-d',@me)"/] | |||||
</div> | |||||
</div> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<!-- /.list-main --> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
</aside> | |||||
<!-- /.article-sidebar --> | |||||
</div> | |||||
</main> | |||||
<!-- /main --> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
<head> | |||||
<meta charset="{dede:global.cfg_soft_lang/}"> | |||||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||||
<title>{dede:field.title/}-{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)' runphp='yes'}if (@me>1) @me='第'.trim(@me).'页-';else @me='';{/dede:pagelist}{dede:global.cfg_webname/}</title> | |||||
<meta name="keywords" content="{dede:field.keywords/}"> | |||||
<meta name="description" content="{dede:field.description function='html2text(@me)'/}"> | |||||
<script>const currentNavTypeID = '{dede:field.id/}';</script> | |||||
<script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css"> | |||||
<link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css"> | |||||
<link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico"> | |||||
</head> | |||||
<body> | |||||
{dede:include filename='top.htm'/} | |||||
{dede:include filename='header.htm'/} | |||||
{dede:include filename='navbar.htm'/} | |||||
<div class="container"> | |||||
<div class="position"> | |||||
<nav aria-label="breadcrumb"> | |||||
<ol class="breadcrumb mt-3"> | |||||
<li class="breadcrumb-item">当前位置</li> | |||||
<li class="breadcrumb-item"><a href='/apps/tags.php'>TAG标签</a></li> | |||||
<li class="breadcrumb-item">{dede:field.title /}</li> | |||||
</ol> | |||||
</nav> | |||||
</div> | |||||
</div> | |||||
<main class="container"> | |||||
<div class="row"> | |||||
<div class="col-md-8 list-main"> | |||||
<ul class="list-unstyled items"> | |||||
{dede:list pagesize='10'} | |||||
<li class="media border-bottom-dashed"> | |||||
<div class="media-body row mt-2 py-2"> | |||||
<div class="col-12 caption"> | |||||
<a href="[field:arcurl/]"> | |||||
<h4 class="title">[field:code/] [field:title/]</h4> | |||||
</a> | |||||
</div> | |||||
<div class="col-12 description"> | |||||
<a href="[field:arcurl/]">[field:description/]... | |||||
</a> | |||||
</div> | |||||
<div class="col-12 source text-right"> | |||||
发布时间:[field:pubdate function="MyDate('y-m-d',@me)"/] | |||||
</div> | |||||
</div> | |||||
</li> | |||||
{/dede:list} | |||||
</ul> | |||||
<nav> | |||||
<ul class="pagination justify-content-center py-3"> | |||||
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="1"/} | |||||
</ul> | |||||
</nav> | |||||
</div> | |||||
<aside class="col-md-4 article-sidebar"> | |||||
{dede:include comment='推荐内容' filename="widget_recommend.htm"/} | |||||
{dede:include comment='热点内容' filename="widget_hot.htm"/} | |||||
</aside> | |||||
</div> | |||||
</main> | |||||
{dede:include filename="footer.htm"/} | |||||
</body> | |||||
</html> | </html> |
@@ -9,5 +9,4 @@ | |||||
<li><a href="[field:typeurl/]" title="[field:typename/]">[field:typename/]</a></li> | <li><a href="[field:typeurl/]" title="[field:typename/]">[field:typename/]</a></li> | ||||
{/dede:channel} | {/dede:channel} | ||||
</ul> | </ul> | ||||
</div> | |||||
<!-- /.ddcard --> | |||||
</div> |
@@ -9,5 +9,4 @@ | |||||
<li><a href="[field:arcurl/]" title="[field:fulltitle/]">[field:title/]</a></li> | <li><a href="[field:arcurl/]" title="[field:fulltitle/]">[field:title/]</a></li> | ||||
{/dede:arclist} | {/dede:arclist} | ||||
</ul> | </ul> | ||||
</div> | |||||
<!-- /.ddcard --> | |||||
</div> |
@@ -9,5 +9,4 @@ | |||||
<li><a href="[field:arcurl/]" title="[field:fulltitle/]">[field:title/]</a></li> | <li><a href="[field:arcurl/]" title="[field:fulltitle/]">[field:title/]</a></li> | ||||
{/dede:arclistsg} | {/dede:arclistsg} | ||||
</ul> | </ul> | ||||
</div> | |||||
<!-- /.ddcard --> | |||||
</div> |
@@ -5,5 +5,4 @@ | |||||
</div> | </div> | ||||
</div> | </div> | ||||
<div>{dede:qrcode/}</div> | <div>{dede:qrcode/}</div> | ||||
</div> | |||||
<!-- /.ddcard --> | |||||
</div> |
@@ -9,5 +9,4 @@ | |||||
<li><a href="[field:arcurl/]" title="[field:fulltitle/]">[field:title/]</a></li> | <li><a href="[field:arcurl/]" title="[field:fulltitle/]">[field:title/]</a></li> | ||||
{/dede:arclist} | {/dede:arclist} | ||||
</ul> | </ul> | ||||
</div> | |||||
<!-- /.ddcard --> | |||||
</div> |
@@ -9,5 +9,4 @@ | |||||
<li><a href="[field:arcurl/]" title="[field:fulltitle/]">[field:title/]</a></li> | <li><a href="[field:arcurl/]" title="[field:fulltitle/]">[field:title/]</a></li> | ||||
{/dede:arclistsg} | {/dede:arclistsg} | ||||
</ul> | </ul> | ||||
</div> | |||||
<!-- /.ddcard --> | |||||
</div> |
@@ -5,5 +5,4 @@ | |||||
</div> | </div> | ||||
</div> | </div> | ||||
{dede:vote id='1' lineheight='26' tablewidth='100%' titlebgcolor='#EDEDE2' titlebackground='' tablebgcolor='#ffffff'}{/dede:vote} | {dede:vote id='1' lineheight='26' tablewidth='100%' titlebgcolor='#EDEDE2' titlebackground='' tablebgcolor='#ffffff'}{/dede:vote} | ||||
</div> | |||||
<!-- /.ddcard --> | |||||
</div> |