apostrophe
Version:
The Apostrophe Content Management System.
15 lines (14 loc) • 651 B
HTML
<div class='apos-manage-result-label'>
{%- if data.minSize -%}
{%- set minSize = __ns('apostrophe', ' at least %sx%s pixels in size', data.minSize[0], data.minSize[1]) -%}
{%- else -%}
{%- set minSize = '' -%}
{%- endif -%}
{%- if data.filters.q -%}
{{ __ns('apostrophe', 'Showing %s results%s for ', data.total, minSize) }}<span>"{{ data.filters.q }}"</span>
{%- elif data.total == 0 -%}
{{ __ns('apostrophe', 'No results for current filters%s', minSize) }}
{%- else -%}
{{ __ns('apostrophe', 'Showing %s - %s of %s results%s', data.skip + 1, data.skip + data.pieces.length, data.total, minSize) }}
{%- endif -%}
</div>