模板:FeaturedContent:修订间差异
来自Age Of History 2 Chinese Wiki
创建页面,内容为“<div class="featured-content-container"> <div class="feature-item person"> <div class="section-title">精选人物</div> <div class="feature-content"> {{#cargo_query: tables=FeaturedContent |fields=Title, Description, Author, Image |where=Type='人物' AND IsCurrent='1' |limit=1 }} </div> <div class="see-more"> <a href="{{localurl:精选内容归档}}">往期精选归档</a> </div> </div>…” |
无编辑摘要 |
||
第1行: | 第1行: | ||
{{#cargo_declare: | |||
_table = FeaturedContent | |||
|Title = string | |||
|Description = text | |||
|Author = string | |||
|Image = string | |||
|Type = string | |||
|IsCurrent = boolean | |||
|FeatureDate = date | |||
}} | |||
<noinclude> | |||
此模板用于创建精选内容条目。 | |||
</noinclude> | |||
<includeonly> | |||
{{#cargo_store: | |||
_table = FeaturedContent | |||
|Title = {{{title|}}} | |||
|Description = {{{description|}}} | |||
|Author = {{{author|}}} | |||
|Image = {{{image|}}} | |||
|Type = {{{type|}}} | |||
|IsCurrent = {{{current|0}}} | |||
|FeatureDate = {{{date|}}} | |||
}} | |||
<!-- 展示精选内容的HTML结构 --> | |||
<div class="feature-item-container"> | |||
<div class="feature-image"> | |||
{{#if:{{{image|}}}|[[File:{{{image}}}|200px]]|[[File:默认图片.png|200px]]}} | |||
</div> | </div> | ||
<div class="feature-details"> | |||
<div class="feature- | <div class="featured-title">{{{title}}}</div> | ||
<div class=" | <div class="featured-author">{{#if:{{{author|}}}|作者:{{{author}}}|}}</div> | ||
<div class=" | <div class="featured-description">{{{description|}}}</div> | ||
<div class=" | |||
</div> | </div> | ||
</div> | </div> | ||
</includeonly> |