sunadarake / sculpin-category-list-bundle
3rd party Sculpin Bundle that creates category list
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/sunadarake/sculpin-category-list-bundle
Requires
- php: ^8.0 || ^7.3
- sculpin/sculpin: ^3.1.0
README
3rd party Sculpin Bundle that creates category list
Setup
composer require sunadarake/sculpin-category-list-bundle
In your app/SculpinKernel.php
<?php use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel; use Darake\SculpinCategoryListBundle\SculpinCategoryListBundle; class SculpinKernel extends AbstractKernel { protected function getAdditionalSculpinBundles(): array { return [ SculpinCategoryListBundle::class, ]; } }
How to use
If you have configured taxonomy in app/config/sculpin_kernel.yml , you write the following in template file.
<h2>category list</h2>
<ul>
{% for cat in site.categories_list %}
<li>{{ cat.name }} {{ cat.count }}</li>
{% endfor %}
</ul>
or
<h2>tag list</h2>
<ul>
{% for tag in site.tags_list %}
<li>{{ tag.name }} {{ tag.count }}</li>
{% endfor %}
</ul>