11 lines
259 B
PHP
11 lines
259 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
Kirby::plugin('index/beforeafter', [
|
||
|
|
'blueprints' => [
|
||
|
|
'blocks/beforeafter' => __DIR__ . '/blueprints/blocks/beforeafter.yml'
|
||
|
|
],
|
||
|
|
'snippets' => [
|
||
|
|
'blocks/beforeafter' => __DIR__ . '/snippets/blocks/beforeafter.php'
|
||
|
|
]
|
||
|
|
]);
|