{% import 'grid_classes.html.twig' as grid %}
<div class="{% if layout == '0' %}container {% endif %}entry-meta">
	{% if function('get_the_time', 'U', post) is same as(post.get_modified_time('U')) %}
		<time class="entry-date published" datetime="{{ post.date('c') }}">
			<span itemprop="datePublished">{{ post.date }}</span>
		</time>
	{% else %}
		<time class="updated" datetime="{{ post.modified_date('c') }}">
			<span itemprop="datePublished">{{ post.modified_date }}</span>
		</time>
	{% endif %}
	{{ __( 'under', 'maera' ) }}
	{% for category in post.get_categories %}
		<a href="{{ category.get_path }}" itemprop="articleSection">{{ category.name }}</a>{% if not loop.last %}, {% endif %}
	{% endfor %}
	<span class="byline">{{ __( 'by', 'maera' ) }} <span class="author vcard"><a class="url fn n" href="{{ post.author.link }}">{{ post.author.name }}</a></span></span>
	{% if post.comments %}{{ __( 'with', 'maera' ) }} <a href="{{ post.link }}#comments">{{ post.comment_count }} {{ __( 'comments', 'maera' ) }}</a>{% endif %}
</div>
