网站首页
栏目列表
内容详情
表单搜索
其他杂项
迅睿官方标签生成器
当前栏目
相关变量
当前位置
<a href="{SITE_URL}">网站首页</a> > {dr_catpos($catid, '', true, '<a href="[url]">[name]</a> > ')}
栏目ID
{$catid}
栏目名称
{$cat.name}
栏目链接
{$cat.url}
栏目内容
{$cat.content}
栏目缩略图
{dr_get_file($cat.thumb)}
栏目SEO标题
{$cat['setting']['seo']['list_title']}
栏目SEO关键字
{$cat['setting']['seo']['list_keywords']}
栏目SEO描述
{$cat['setting']['seo']['list_description']}
父级栏目名称
{$parent.name}
父级栏目链接
{$parent.url}
父级栏目缩略图
{dr_get_file($parent.thumb)}
顶级栏目名称
{$top.name}
顶级栏目链接
{$top.url}
顶级栏目缩略图
{dr_get_file($top.thumb)}
当前栏目
数据与分页
栏目列表数据
{module catid=$catid order=updatetime page=1}{/module}
分页条
{$pages}
超1页才显示分页条
{if $nums>1}{$pages}{/if}
分页条CSS
.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px;} .pagination>li{display:inline;} .pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px;} .pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px;} .pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px;} .pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd;} .pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default;}
分页号码
{$pageid}
文档数量
{count action=module module=MOD_DIR catid=$catid}
当前栏目子栏目
{category module=share pid=$catid}{/category} {if $t.id==$cat.id} class="active"{/if}
顶级栏目下的二级栏目
{category module=share pid=$top.id}{/category} {if $t.id==$cat.id} class="active"{/if}
上级栏目下的子栏目
{category module=share pid=$parent.id}{/category} {if $t.id==$cat.id} class="active"{/if}
栏目下级或同级栏目
{loop $related $c} {if $c.id==$cat.id} class="active"{/if} <a href="{$c.url}">{$c.name}</a> {if $c.child} {category module=share pid=$c.id return=cx} {if dr_in_array($cat.id, $cx.catids)} class="active"{/if} <a href="{$cx.url}">{$cx.name}</a> {/category} {/if} {/loop}
当前栏目相关文章
{module module=MOD_DIR catid=$catid order=updatetime num=10 cache=1}{/module}
module
文档变量
标题
{$t.title}
链接
{$t.url}
标题截取
{dr_strcut($t.title, 30, '')}
缩略图
{dr_thumb($t.thumb)}
缩略图原图
{dr_get_file($t.thumb)}
缩略图判断
{if $t.thumb}{dr_get_file($t.thumb)}{else}/static/assets/images/nopic.gif{/if}
描述
{$t.description}
描述截取
{dr_strcut($t.description, 200, '...')}
当前行数1
{$key+1}
当前行数判断
{if ($key+1)%2==0}双{else}单{/if}
更新时间
{$t.updatetime}
时间年月日
{dr_date($t._updatetime, 'Y-m-d')}
时间年月日时分秒
{dr_date($t._updatetime, 'Y-m-d H:i:s')}
时间友好
{dr_fdate($t['_updatetime'])}
录入时间
{$t.inputtime}
时间年月日
{dr_date($t._inputtime, 'Y-m-d')}
时间年月日时分秒
{dr_date($t._inputtime, 'Y-m-d H:i:s')}
时间友好
{dr_fdate($t['_inputtime'])}
浏览次数
{intval($t['hits'])}
浏览次数(动)
{dr_show_hits($t['hits'], '', 'news')}
栏目名称
{dr_cat_value('news', $t['catid'], 'name')}
栏目链接
{dr_cat_value('news', $t['catid'], 'url')}
栏目缩略图
{dr_get_file(dr_cat_value('news', $t['catid'], 'thumb'))}
父栏目名称
{dr_cat_value($t.mid, dr_cat_value($t.mid, $t['catid'], 'pid'), 'name')}
父栏目链接
{dr_cat_value($t.mid, dr_cat_value($t.mid, $t['catid'], 'pid'), 'url')}
是否第一条
{if $is_first}第一条{/if}
是否最后一条
{if $is_last}最后一条{/if}
笔名
{$t.author}
会员id
{$t['uid']}
会员头像
{dr_avatar($t['uid'])}
内容
{$t['content']}
内容去掉html
{dr_clearhtml($t['content'])}
内容去掉html再截
{dr_strcut(dr_clearhtml($t['content']), 10, '...')}
会员其他字段
{php $user=dr_member_info($t['uid']);} 会员name:{$user.name} 会员username:{$user.username} 会员phone:{$user.phone} 会员email:{$user.email}
myflag显示文字
{if dr_in_array('c', $t.myflag)}推荐{else}普通{/if}
TAG标签
{php $kws = dr_get_content_tags($t.keywords);} {if $kws} {loop $kws $name $url} <a href="{$url}" target="_blank">{$name}</a> {/loop} {/if}