企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
name:前台调用的字段的变量 firsttext:位置第一个显示文字 firstclass:位置第一个class名 firsturl:位置第一个url链接 activeclass:当前位置class名 num:在第一个位置后面显示几个位置 #### 1.显示完整位置 \<!-- 面包削导航 --> <div class="mod-path row"> <column:location name="location" firsttext="首页" firstclass="parent" activeclass="now"> <a href="{$location.url}" class="{$activeclass}">{$location.title}</a> </column:location> </div> \<!-- 面包削导航 --> <div class="mod-path row"> <column:location name="location" firsttext="首页" firstclass="parent" activeclass="now"> <a href="{$location.url}" class="{$activeclass}">{$location.title}</a> </column:location> </div> 2\.显示部分位置以及在各个位置间加入间隔符 \<!-- 面包削导航 --> <div class="frame-path min-box"> <column:location name="location" firsttext="首页" firstclass="parent home" activeclass="now" nu m="1"> <a href="{$location.url}" class="{$activeclass}">{$location.title}</a> <if condition="$i lt count($ LOCATION )"> &gt; </if> </column:location> </div> \<!-- 面包削导航 --> <div class="frame-path min-box"> <column:location name="location" firsttext="首页" firstclass="parent home" activeclass="now" nu m="1"> <a href="{$location.url}" class="{$activeclass}">{$location.title}</a> <if condition="$i lt count($ LOCATION )"> &gt; </if> </column:location> </div> 3\.第一个位置跳转到指定URL而不是网站首页实例: \<!-- 当前位置 --> <div class="location-nav"> <div class="location-nav-con"> <a href="javascript:void(0)">当前位置:</a> <column:location name="location" firsttext="专题首页" firsturl="/name-sfx" num="1" > <a href="{$location.url}">{$location.title}</a> <if condition="$i lt count($ LOCATION )"> <span>&gt;</span> </if> </column:location> </div> </div> \<!-- 当前位置 --> <div class="location-nav"> <div class="location-nav-con"> <a href="javascript:void(0)">当前位置:</a> <column:location name="location" firsttext="专题首页" firsturl="/name-sfx" num="1" > <a href="{$location.url}">{$location.title}</a> <if condition="$i lt count($ LOCATION )"> <span>&gt;</span> </if> </column:location> </div> </div>