f3b89ca9d7
One presentational SeoHead renders the full OG/Twitter/JSON-LD head surface at prerender via typed schema.org builders. Per-medium release schema, config-sourced canonicals, 404 noindex. Zero CMS change.
18 lines
526 B
Plaintext
18 lines
526 B
Plaintext
@page "/mixes"
|
|
@using DeepDrftModels.Enums
|
|
@using DeepDrftPublic.Client.Controls
|
|
@inherits MediumBrowseBase
|
|
@inject SeoOptions Seo
|
|
|
|
<SeoHead Model="@SeoModel.ForBrowse(Seo, ReleaseMedium.Mix, "/mixes")" />
|
|
|
|
<ReleaseGallery Releases="@Releases"
|
|
Loading="@Loading"
|
|
DetailRoute="mixes"
|
|
EmptyMessage="No mixes yet" />
|
|
|
|
@code {
|
|
protected override DeepDrftModels.Enums.ReleaseMedium Medium => DeepDrftModels.Enums.ReleaseMedium.Mix;
|
|
protected string DetailRoute => "mixes";
|
|
}
|