{# Article - full view #} {% extends "eZDemoBundle::pagelayout.html.twig" %} {% block content %}

{{ ez_render_field( content, 'title' ) }}

{% if showImage and not ez_is_field_empty( content, 'image' ) %}
{{ ez_render_field( content, 'image', { 'template': 'eZDemoBundle:fields:ezimage_simple.html.twig', 'parameters': {'alias': 'articleimage'} } ) }} {% if not ez_is_field_empty( content, 'caption' ) %}
{{ ez_render_field( content, 'caption' ) }}
{% endif %}
{% endif %} {% if showSummary and not ez_is_field_empty( content, 'intro' ) %}
{{ ez_render_field( content, 'intro' ) }}
{% endif %} {% if not ez_is_field_empty( content, 'body' ) %}
{{ ez_render_field( content, 'body' ) }}
{% endif %}
{{ ez_render_field( content, 'tags', { 'attr': {'class' : 'tags-wrapper'} } ) }}
{{ render( controller( 'eZDemoBundle:Demo:viewStarRating', {'location': location} ) ) }}
{% include 'eZDemoBundle:parts:social_buttons.html.twig' %}
{{ ez_comments_render_content( content.contentInfo ) }}
{{ render( controller( 'eZDemoBundle:Demo:viewTipAFriend', {'location': location} ) ) }}
{% endblock %}