templates/bundles/OdiseoSyliusBlogPlugin/Shop/Article/index.html.twig line 1

  1. {% extends nglayouts.layoutTemplate %}
  2. {% import 'frontend/Macro/pagination.html.twig' as pagination %}
  3. {% block title %}Blog
  4. {% endblock %}
  5. {% block post_header %}
  6.     <!-- section start-->
  7.     {{ render(path('bitbag_sylius_cms_plugin_shop_media_render', {'code' : 'blog_post_header', 'template' : 'frontend/cms/common/media/_header.html.twig'})) }}
  8.     <!-- section start-->
  9. {% endblock %}
  10. {% block body %}
  11.     <section class="news-section">
  12.         <div class="auto-container">
  13.             {% if resources | length > 0 %}
  14.                 <div class="row">
  15.                     {% for article in resources %}
  16.                         <!-- News Block -->
  17.                         <div class="news-block col-lg-4 col-md-6 col-sm-12 wow fadeInUp">
  18.                             <div class="inner-box">
  19.                                 <div class="image-box">
  20.                                     <figure class="image">
  21.                                         <a href="{{ path('odiseo_sylius_blog_plugin_shop_article_show', {'slug' : article.slug}) }}"><img style="height:270px;" src="{{ article.images | length > 0 ? article.images[0].path|imagine_filter(filter|default('sylius_large')): 'https://via.placeholder.com/370x270' }}" alt=""></a>
  22.                                     </figure>
  23.                                     <span class="date">{{ article.createdAt|date('d') }}
  24.                                         <span class="month">{{ article.createdAt|date('M-Y') }}</span> 
  25.                                     </span>
  26.                                 </div>
  27.                                 <div class="lower-content">
  28.                                     <ul class="post-info">
  29.                                         <li>
  30.                                             <i class="fa fa-user-circle"></i>Admin</li>
  31.                                         <li>
  32.                                             <i class="fa fa-comments"></i>
  33.                                             0 Comment</li>
  34.                                     </ul>
  35.                                     <h4 class="title" style="height:100px;">
  36.                                         <a href="{{ path('odiseo_sylius_blog_plugin_shop_article_show', {'slug' : article.slug}) }}">{{article.title|length > 60 ? article.title|slice(0, 50)|raw ~ '...' : article.title}} </a>
  37.                                     </h4>
  38.                                     <div class="text">
  39.                                         {{ article.content | striptags | length > 200 ? article.content|striptags|slice(0, 200)|raw ~ '...' : article.content|striptags|raw }} 
  40.                                     </div>
  41.                                 </div>
  42.                             </div>
  43.                         </div>
  44.                     {% endfor %}
  45.                 </div>
  46.             </div>
  47.         {% endif %}
  48.     </section> 
  49. {% endblock %}