Siteserver-stl:content内容值
来自站长百科
导航: 上一页
stl:content 内容值
在模板中插入内容的属性
属性列表
下表显示所有属于此元素的属性列表。
注意:
- stl:content 元素只能在内容模版中或者作为stl:contents等内容列表元素的子元素。
- stl:content 元素与STL 内容实体的作用基本相同,但如果type等于ImageUrl、LinkUrl或FileUrl,stl:content 元素将显示图片或链接,而内容实体只显示地址字符串。
type属性是可选属性。如果没有设置type属性,系统默认使用Title即内容标题作为type的取值。
- 如果type为ImageUrl,系统将显示内容的图片。
- 如果type为LinkUrl,系统将显示内容的链接。
- 如果type为FileUrl,系统将显示内容附件的链接。
- 如果系统内容正文能够翻页显示,需要使用type="PageContent",同时配合stl:pageItem标签实现翻页效果。
stl:content示例
- 示例一:显示内容的副标题
下面的例子在页面中显示内容的副标题。
<stl:content type="SubTitle"></stl:content> <stl:content type="SubTitle"></stl:content>
- 示例二:在内容列表中显示内容链接
下面的例子显示栏目索引为"新闻"的栏目的内容列表,内容链接的提示为内容标题全称。
<stl:contents channelIndex="新闻" width="80%" border="0"> <stl:a title="stl:content 示例" target="_blank"> <stl:content type="Title"></stl:content> </stl:a> </stl:contents>