{% if view == 'entries_list' %}
{% block entries_list_tag %}
{% if data.tag %}
{{ data.translations.t_showing_tagged_posts }} {{ data.tag }}
{% endif %}
{% endblock %}
{% block entries_list %}
{% for entry in data.entries %}
{% endfor %}
{% endblock %}
{% block entries_list_footer %}
{% if data.back_url %}
{% endif %}
{{ data.pagination_html|raw }}
{% endblock %}
{% block entries_list_searchbox %}
{% if data.searchbox %}
{% endif %}
{% endblock %}
{% elseif view == 'entry' %}
{% block entry_tags %}
{% if not data.entry.in_comments_thread %}
{% if data.hide_tags == false and data.post.tags %}
{% endif %}
{% endif %}
{% endblock %}
{% block entry_post %}
{{ data.post.title }}
{% if not data.entry.in_comments_thread %}
{% if data.post.subtitle %}
{{ data.post.subtitle }}
{% endif %}
{{ data.post.content|raw }}
{{ data.translations.t_created }} {{ data.post.date }}
{% if data.post.feed_data %}
{% if data.device == 'mobile' %}
{{ data.post.feed_data.ratings_up }} {% if data.post.feed_data.has_rated %}
Unrate{% else %}
Rate up{% endif %}
{% if data.post.feed_data.has_starred %}
Unstar{% else %}
Star{% endif %}
{% if data.post.feed_data.is_featured %}
This post is featured on
XtGem{% endif %}
{% else %}
{% if data.post.feed_data.has_rated %}
{{ data.post.feed_data.ratings_up }} {% else %}
{{ data.post.feed_data.ratings_up }} {% endif %}
{% if data.post.feed_data.has_starred %}
Unstar {% else %}
Star {% endif %}
{% if data.post.feed_data.is_featured %}
This post is featured on
XtGem{% endif %}
{% endif %}
{% endif %}
{% if data.social_share_enabled %}
{% endif %}
{% endif %}
{{ data.translations.t_back_to_posts }}
{% endblock %}
{% block entry_comments_list %}
{% if data.post.allow_comments %}
{% if data.new_comments_system %}
{{ data.pagination_html|raw }}
{% else %}
{{ data.pagination_html|raw }}
{% endif %}
{% endif %}
{% endblock %}
{% block entry_comments_form %}
{% if data.comments_form.is_maintenance %}
{{ data.comments_form.maintenante_markup|raw }}
{% elseif data.is_logged_in and data.new_comments_system and not data.community_name %}
{% else %}
{% if data.post.allow_comments %}
{% endif %}
{% endif %}
{% endblock %}
{% elseif view == 'no_contents' %}
{% block no_contents %}
{% if data.searchbox.phrase %}
{{ data.translations.t_no_search_results_found }}
{% else %}
{{ data.translations.t_no_entries_found }}
{% endif %}
{% endblock %}
{% block no_contents_searchbox %}
{% if data.searchbox %}
{% if data.back_url %}
{% endif %}
{{ data.pagination_html|raw }}
{% endif %}
{% endblock %}
{% elseif view == 'no_entry' %}
{% block no_entry %}
No blog entry found
{% endblock %}
{% endif %}
{% if data.entry.comments_thread_parent %}