b8f81edb59
New shared ReleaseDescription control renders the blurb in a uniform themed block below the hero/header; null/whitespace renders nothing, with no layout artifact.
20 lines
839 B
Plaintext
20 lines
839 B
Plaintext
@namespace DeepDrftPublic.Client.Controls
|
|
|
|
@* Shared presentational blurb block for release detail pages. Renders the release's short
|
|
Description paragraph in a uniform styled block placed just below the hero/header on every
|
|
medium (Session, Mix, Cut). Purely presentational — owns no data fetch and no player wiring.
|
|
A null/whitespace Description renders nothing at all: no block, no divider, no whitespace
|
|
artifact (the guard lives here so every consumer gets it for free). *@
|
|
|
|
@if (!string.IsNullOrWhiteSpace(Description))
|
|
{
|
|
<div class="deepdrft-release-description">
|
|
<p class="deepdrft-release-description-text">@Description</p>
|
|
</div>
|
|
}
|
|
|
|
@code {
|
|
/// <summary>The release's short description blurb. Null/whitespace renders nothing.</summary>
|
|
[Parameter] public string? Description { get; set; }
|
|
}
|