{% extends 'layout.html.twig' %} {% do pimcore_head_title().set(article.getTitle()) %} {% do pimcore_head_meta().setDescription(article.getText(), 160) %} {% block content %}
{% include 'Blog/meta.html.twig' with { article: article } only %}
{% if article.getPosterImage() %} {# @var posterImage \Pimcore\Model\DataObject\Data\Hotspotimage #} {% set posterImage = article.getPosterImage() %}
{{ posterImage.getThumbnail('content').getHTML({ class: 'img-responsive' })|raw }} {% for hotspot in posterImage.getHotspots()|default([]) %}
{% endfor %} {% for marker in posterImage.getMarker()|default([]) %}
{% endfor %}


{% endif %} {{ article.getText()|raw }}
comments powered by Disqus
{% endblock %}