Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sunadarake/sculpincategorylistbundle

3rd party Sculpin Bundle that creates category list
https://github.com/sunadarake/sculpincategorylistbundle

sculpin sculpin-bundle

Last synced: 3 days ago
JSON representation

3rd party Sculpin Bundle that creates category list

Awesome Lists containing this project

README

        

# Sculpin Category List Bundle

3rd party Sculpin Bundle that creates category list

## Setup

```
composer require sunadarake/sculpin-category-list-bundle
```
In your `app/SculpinKernel.php`

```php
category list


    {% for cat in site.categories_list %}
  • {{ cat.name }} {{ cat.count }}

  • {% endfor %}

```

or

```

tag list



    {% for tag in site.tags_list %}
  • {{ tag.name }} {{ tag.count }}

  • {% endfor %}

```