vendor/uvdesk/support-center-bundle/Resources/views/Themes/articleView.html.twig line 1

Open in your IDE?
  1. <div class="uv-kb-section">
  2. <div class="uv-kb-section-layout uv-kb-layout-article">
  3. <div class="uv-kb-folder">
  4. <h2>{{"Popular Articles"|trans}}</h2>
  5. <p>{{"Here are some of the most popular articles, which helped number of users to get their queries and questions resolved."|trans}}</p>
  6. <ul>
  7. {% for popArticle in popArticles %}
  8. <li><a href="{{path('helpdesk_knowledgebase_read_article', {'article': popArticle.id})}}"> {% if popArticle.stared %}<span class="uv-icon-star uv-pre"></span>{% endif %} {{ popArticle.name }}</a></li>
  9. {% endfor %}
  10. </ul>
  11. </div>
  12. </div>
  13. </div>