46 lines
2.0 KiB
Handlebars
46 lines
2.0 KiB
Handlebars
<article class="item{{#if is_loop}} is-loop{{else if is_featured}} is-featured{{else if is_special}} is-special{{/if}}{{#if feature_image}} is-image{{/if}}">
|
|
{{#if feature_image}}
|
|
<div class="item-image global-image global-image-orientation global-radius{{#match @custom.feature_image_shape "Landscape"}} is-landscape{{else match @custom.feature_image_shape "Square"}} is-square{{else match @custom.feature_image_shape "Natural"}} is-natural{{/match}}">
|
|
{{#if is_featured}}{{#if @last}}<span class="is-last"></span>{{/if}}{{/if}}
|
|
<a href="{{url}}" {{#if is_featured}}tabindex="-1"{{/if}} aria-label="link: {{title}}">
|
|
{{>images/loop_image}}
|
|
</a>
|
|
{{!-- {{#if @custom.show_author}}
|
|
<div class="item-authors global-authors">
|
|
<div>
|
|
{{#foreach authors to="5"}}
|
|
<div class="item-author global-item-author{{#if profile_image}} is-image global-image{{/if}}">
|
|
<a href="{{url}}" class="global-link" title="{{name}}" tabindex="-1"></a>
|
|
{{#if profile_image}}
|
|
{{>images/other_image other_image=profile_image alt=name}}
|
|
{{else}}
|
|
<span>{{name}}</span>
|
|
{{/if}}
|
|
</div>
|
|
{{/foreach}}
|
|
</div>
|
|
</div>
|
|
{{/if}} --}}
|
|
</div>
|
|
{{/if}}
|
|
<div class="item-content">
|
|
{{^if is_special}}
|
|
<div class="item-tags global-tags">
|
|
{{>members/visibility_label}}
|
|
{{#if is_featured}}
|
|
{{#if tags}}{{#foreach tags to="1"}}<a href="{{url}}" tabindex="-1">{{name}}</a>{{/foreach}}<span>{{#foreach tags from="2" limit="2"}}<a href="{{url}}" tabindex="-1">{{name}}</a>{{/foreach}}</span>{{/if}}
|
|
{{else}}
|
|
{{#if tags}}{{tags limit="1" separator=""}}<span>{{tags from="2" limit="2" separator=""}}</span>{{/if}}
|
|
{{/if}}
|
|
</div>
|
|
{{/if}}
|
|
<h2 class="item-title"><a href="{{url}}" {{#if is_featured}}tabindex="-1"{{/if}}>{{title}}</a></h2>
|
|
{{#has any="excerpt,custom_excerpt"}}
|
|
{{#if show_excerpt}}
|
|
<p class="item-excerpt{{^if feature_image}} no-image{{/if}}">
|
|
{{#if custom_excerpt}}{{custom_excerpt}}{{else if excerpt}}{{excerpt}}...{{/if}}
|
|
</p>
|
|
{{/if}}
|
|
{{/has}}
|
|
</div>
|
|
</article> |