mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 11:58:53 +00:00
29 lines
No EOL
654 B
PHP
29 lines
No EOL
654 B
PHP
<?php
|
|
|
|
/**
|
|
* @author Pedro Moreno https://pmdesign.dev
|
|
* @license Public Domain
|
|
* @url https://github.com/pmoreno-rodriguez/grav-theme-future2021
|
|
*/
|
|
|
|
namespace Grav\Plugin\Shortcodes;
|
|
|
|
use Thunder\Shortcode\Shortcode\ShortcodeInterface;
|
|
|
|
class BoxShortcode extends Shortcode
|
|
{
|
|
public function init()
|
|
{
|
|
$this->shortcode->getHandlers()->add('sc-box', function (ShortcodeInterface $sc) {
|
|
|
|
$output = $this->grav['twig']->processTemplate(
|
|
'partials/shortcodes/box.html.twig',
|
|
[
|
|
'shortcode' => $sc,
|
|
]
|
|
);
|
|
|
|
return $output;
|
|
});
|
|
}
|
|
} |