{%- set date_diff = date(post.date) != date(post.updated) %}
{%- set time_diff = time(post.date) != time(post.updated) %}
{%- if theme.post_meta.created_at %}
{{ __('post.posted') }}
{%- if not date_diff and time_diff and theme.post_meta.updated_at.enable and theme.post_meta.updated_at.another_day %}
{%- set create_title = __('post.created') + __('symbol.colon') + full_date(post.date) + ' / ' + __('post.modified') + __('symbol.colon') + time(post.updated) %}
{% else %}
{%- set create_title = __('post.created') + __('symbol.colon') + full_date(post.date) %}
{%- endif %}
{%- endif %}
{%- if theme.post_meta.updated_at.enable and (not theme.post_meta.updated_at.another_day or date_diff or not theme.post_meta.created_at) %}
{{ __('post.edited') }}
{%- endif %}
{%- if post.categories and post.categories.length and theme.post_meta.categories %}
{{ __('post.in') }}
{%- for cat in post.categories.toArray() %}
{{ cat.name }}
{%- set cat_length = post.categories.length %}
{%- if cat_length > 1 and loop.index !== cat_length %}
{{ __('symbol.comma') }}
{%- endif %}
{%- endfor %}
{%- endif %}
{# LeanCloud PageView #}
{%- if theme.leancloud_visitors.enable %}
{{ __('post.views') + __('symbol.colon') }}
{%- endif %}
{%- if theme.firestore.enable %}
{{ __('post.views') + __('symbol.colon') }}
{%- endif %}
{%- if not is_index and theme.busuanzi_count.enable and theme.busuanzi_count.post_views %}
{{ __('post.views') + __('symbol.colon') }}
{%- endif %}
{{- next_inject('postMeta') }}
{%- if theme.symbols_count_time.separated_meta and config.symbols_count_time.symbols and config.symbols_count_time.time %}
{%- endif %}
{%- if config.symbols_count_time.symbols %}
{{ __('symbols_count_time.count') + __('symbol.colon') }}
{{ symbolsCount(post) }}
{%- endif %}
{%- if config.symbols_count_time.time %}
{{ __('symbols_count_time.time') }} ≈
{{ symbolsTime(post, config.symbols_count_time.awl, config.symbols_count_time.wpm, __('symbols_count_time.time_minutes')) }}
{%- endif %}