模板: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行:
<div class="featured-content-container">
{{#cargo_declare:
   <div class="feature-item person">
  _table = FeaturedContent
    <div class="section-title">精选人物</div>
  |Title = string
    <div class="feature-content">
  |Description = text
      {{#cargo_query:
  |Author = string
        tables=FeaturedContent
  |Image = string
        |fields=Title, Description, Author, Image
  |Type = string
        |where=Type='人物' AND IsCurrent='1'
  |IsCurrent = boolean
        |limit=1
   |FeatureDate = date
      }}
}}
    </div>
 
    <div class="see-more">
<noinclude>
      <a href="{{localurl:精选内容归档}}">往期精选归档</a>
此模板用于创建精选内容条目。
    </div>
</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-item group">
     <div class="featured-title">{{{title}}}</div>
     <div class="section-title">精选团体</div>
     <div class="featured-author">{{#if:{{{author|}}}|作者:{{{author}}}|}}</div>
     <div class="feature-content">
     <div class="featured-description">{{{description|}}}</div>
      {{#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>
   </div>
</div>
</div>
</includeonly>

2025年5月2日 (五) 17:27的版本

此模板定义表格“FeaturedContent”。 查看表格.


此模板用于创建精选内容条目。