{% extends 'D2NewsBundle::base.html.twig' %} {% set seo_img_path = "/uploads/news/" ~ news.getBestPath ~ "?v=" ~ news.version %} {% if social_shares|length > 0 %} {% set built_snippets = d2_build_snippets(social_shares, route_url, news.title, news.subTitle, seo_img_path, news.hashTag, news.shareTag) %} {% endif %} {% block title %} {{ d2_sys_config('sys_orginization') }} {% trans %}News{% endtrans %}: {{ news.title }} {% endblock title %} {% block head_seo %} {% set tag_list = d2_get_tag_list(news) %} {% if d2_sys_config('sys_show_social') %}{% if built_snippets['meta_data'] is defined %} {{ built_snippets['meta_data']| raw }} {% endif %}{% endif %} {% endblock head_seo %} {% block head_script_extra %} {% if d2_sys_config('sys_show_social') %}{% if built_snippets['script'] is defined %} {{ built_snippets['script']| raw }} {% endif %}{% endif %} {% endblock head_script_extra %} {% block head_style_extra %} {% endblock head_style_extra %} {% block page_header %} {% endblock page_header %} {% block content %}

{% if news.path %}
NEWS

{{ news.title }}

{{ news.text|filterScript()|raw }}

This {% trans %}News Item{% endtrans %} has been viewed {{ news.viewCnt }} times.

{% if d2_sys_config('sys_show_social') %}{% if built_snippets['html'] is defined %} {{ built_snippets['html']| raw }} {% endif %}{% endif %}
{% else %}

{{ news.title }}

{{ news.text|filterScript()|raw }}

This {% trans %}News Item{% endtrans %} has been viewed {{ news.viewCnt }} times.

{% if d2_sys_config('sys_show_social') %}{% if built_snippets['html'] is defined %} {{ built_snippets['html']| raw }} {% endif %}{% endif %}
{% endif %}
{% if d2_sys_config('sys_contributor_show') == true %} {% if news.customer is not null %} {% set customer = news.customer %}

{% if customer.path %} CONTRIBUTOR {% else %} EXPERT {% endif %}

{{ customer.displayName }}

{{ customer.description }}

{% endif %} {% endif %} {# COMMENTS #} {% if d2_sys_config('sys_comments_show') == true %} {% include 'D2CommentBundle::comments.html.twig' with {'comments_name': 'News Item', 'comment_item_type': 'news', 'comment_item_id': news.id} %} {% endif %}
{% if d2_sys_config('sys_related_show') == true %}
{# RELATED VIDEO's #} {% if d2_sys_config('sys_case_study_active') == true %} {% include 'D2CaseStudiesBundle::related.html.twig' with {'exclude_related': false, 'skip': 0} %} {% endif %} {# RELATED EXPERT'S #} {% if d2_sys_config('sys_expert_active') == true %} {% include 'D2ExpertBundle::related.html.twig' with {'exclude_related': false, 'skip': 0} %} {% endif %} {# RELATED RESOURCE's #} {% if d2_sys_config('sys_collection_active') == true %} {% include 'D2ResourceBundle::related.html.twig' with {'exclude_related': false, 'skip': 0} %} {% endif %} {# RELATED COLLECTIONS #} {% if d2_sys_config('sys_collection_active') == true %} {% include 'D2CollectionBundle::related.html.twig' with {'exclude_related': false, 'skip': 0} %} {% endif %} {# RELATED NEWS #} {% if d2_sys_config('sys_news_active') == true %} {% include 'D2NewsBundle::related.html.twig' with {'exclude_related': news.id, 'skip': 0} %} {% endif %} {# RELATED ADVERTS #} {% if d2_sys_config('sys_smalls_active') == true %} {% include 'D2AdvertBundle::related.html.twig' with {'exclude_related': false, 'skip': 0} %} {% endif %} {% endif %}
{% endblock content %}