src/Pumukit/WebTVBundle/Resources/views/Index/template.html.twig line 1

Open in your IDE?
  1. {% extends '@PumukitWebTV/Layout/template.html.twig' %}
  2. {% block title %}{{ pumukit_info.title|default('PuMuKIT') }} - {% trans %}Home{% endtrans %}{% endblock %}
  3. {% block body %}
  4.     {{ render(controller('Pumukit\\WebTVBundle\\Controller\\ModulesController::highlightAction')) }}
  5.     {{ render(controller('Pumukit\\WebTVBundle\\Controller\\ModulesController::mostViewedAction')) }}
  6.     {{ render(controller('Pumukit\\WebTVBundle\\Controller\\ModulesController::recentlyaddedAllAction')) }}
  7.     <div class="col-xs-12 text-right show_more_link">
  8.         <a href="{{ path('pumukit_webtv_medialibrary_index') }}" title="{{ "Full Catalogue"|trans }}">
  9.             {{ "Show more"|trans }}...
  10.         </a>
  11.     </div>
  12.     {% if menu_stats|default(false) %}
  13.         {{ render(controller('Pumukit\\WebTVBundle\\Controller\\ModulesController::statsAction')) }}
  14.     {% endif %}
  15. {% endblock %}