. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\I18N; /** * The F.A.B. theme. */ class FabTheme 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('F.A.B.'); } /** * A list of CSS files to include for this page. * * @return array */ public function stylesheets(): array { return [ asset('css/fab.min.css'), ]; } }