. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\I18N; /** * The Minimal theme. */ class MinimalTheme extends AbstractModule implements ModuleThemeInterface { use ModuleThemeTrait; /** * How should this module be identified in the control panel, etc.? * * @return string */ public function title(): string { /* I18N: Name of a theme. */ return I18N::translate('minimal'); } /** * A list of CSS files to include for this page. * * @return array */ public function stylesheets(): array { return [ asset('css/minimal.min.css'), ]; } }