explore.html.twig 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. {% extends "PackagistWebBundle::layout.html.twig" %}
  2. {% import "PackagistWebBundle::macros.html.twig" as macros %}
  3. {% block content %}
  4. {% block content_title %}<h2 class="title">Packages</h2>{% endblock %}
  5. {% block lists %}
  6. <section class="row">
  7. <section class="packages-short col-lg-6">
  8. <h3>New Releases <a href="{{ url('feed_releases', {_format: 'rss'}) }}">RSS</a></h3>
  9. {{ macros.listPackagesShort(newlyReleased, true) }}
  10. </section>
  11. <section class="packages-short col-lg-6">
  12. <h3>New Packages <a href="{{ url('feed_packages', {_format: 'rss'}) }}">RSS</a></h3>
  13. {{ macros.listPackagesShort(newlySubmitted) }}
  14. </section>
  15. <section class="packages-short col-lg-6">
  16. <h3>Popular Packages <a href="{{ path('browse_popular') }}">View All</a></h3>
  17. {{ macros.listPackagesShort(popular, false, true) }}
  18. </section>
  19. <section class="packages-short col-lg-6">
  20. <h3>Random Packages</h3>
  21. {{ macros.listPackagesShort(random) }}
  22. </section>
  23. </section>
  24. {% endblock %}
  25. {% endblock %}