All checks were successful
Deploy / Deploy to Production (push) Successful in 13s
- Follow Kirby naming convention with dashes - Update all references (blueprint, snippet, plugin registration) - Rebuild plugin with new name Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
10 lines
294 B
PHP
10 lines
294 B
PHP
<?php
|
|
|
|
Kirby::plugin('index/horizontal-gallery', [
|
|
'blueprints' => [
|
|
'blocks/horizontal-gallery' => __DIR__ . '/blueprints/blocks/horizontal-gallery.yml'
|
|
],
|
|
'snippets' => [
|
|
'blocks/horizontal-gallery' => __DIR__ . '/snippets/blocks/horizontal-gallery.php'
|
|
]
|
|
]);
|