diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro index 7afeaf9..e99b466 100644 --- a/src/layouts/Base.astro +++ b/src/layouts/Base.astro @@ -3,9 +3,11 @@ export interface Props { title: string; description?: string; keywords?: string; + bodyClass?: string; } -const { title, description = 'Better ListView by Component Owl is a .NET WinForms control designed to replace the standard list view control.', keywords = 'better listview, list view, .net list view, list view component' } = Astro.props; +const { title, description = 'Better ListView by Component Owl is a .NET WinForms control designed to replace the standard list view control.', keywords = 'better listview, list view, .net list view, list view component', bodyClass = '' } = Astro.props; const currentPath = Astro.url.pathname; +const isHome = currentPath === '/'; --- @@ -14,155 +16,463 @@ const currentPath = Astro.url.pathname; - + +