# list

Ordered and unordered lists

****

- Source: <https://github.com/getkirby/kirby/tree/5.5.3/config/blocks/list/>

****

## Preview

![](https://assets.getkirby.com/media/pages/docs/reference/panel/blocks/list/a0ac4a580b-1717846665/list-block.png?width=1416&height=600&enlarge=0)

## Default files

### Snippet

By default, Kirby uses the following snippet to render the list block:

```php
<?php /** @var \Kirby\Cms\Block $block */ ?>
<?= $block->text();

```

To overwrite [this default snippet](https://github.com/getkirby/kirby/tree/5.5.3/config/blocks/list/list.php), place your custom file in `/site/snippets/blocks/list.php`.

### Blueprint

By default, Kirby uses the following blueprint for the list block:

```yaml
name: field.blocks.list.name
icon: list-bullet
wysiwyg: true
preview: list
fields:
  text:
    label: field.blocks.list.name
    type: list

```

To overwrite [this default blueprint](https://github.com/getkirby/kirby/tree/5.5.3/config/blocks/list/list.yml), place your custom file in `/site/blueprints/blocks/list.yml`.

### Vue component

[`kirby/src/components/Forms/Blocks/Types/List.vue`](https://github.com/getkirby/kirby/blob/main/panel/src/components/Forms/Blocks/Types/List.vue)