2022-01-20 08:34:38 +00:00
|
|
|
@namespace Wabbajack.App.Blazor.Components
|
|
|
|
|
|
|
|
<div id="info-block">
|
2022-01-28 11:58:28 +00:00
|
|
|
@if (Supertitle is not null)
|
2022-01-16 17:38:54 +00:00
|
|
|
{
|
|
|
|
<span class="supertitle">@Supertitle</span>
|
|
|
|
}
|
|
|
|
<span class="title">@Title</span>
|
|
|
|
<span class="subtitle">@Subtitle</span>
|
|
|
|
<span class="comment">@Comment</span>
|
|
|
|
<span class="description">@Description</span>
|
2022-01-16 13:46:16 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
@code {
|
2022-01-17 16:46:54 +00:00
|
|
|
|
2022-01-16 17:38:54 +00:00
|
|
|
[Parameter]
|
2022-01-28 11:58:28 +00:00
|
|
|
public string? Supertitle { get; set; }
|
2022-01-17 16:46:54 +00:00
|
|
|
|
2022-01-16 13:46:16 +00:00
|
|
|
[Parameter]
|
2022-01-28 11:58:28 +00:00
|
|
|
public string? Title { get; set; }
|
2022-01-16 13:46:16 +00:00
|
|
|
|
|
|
|
[Parameter]
|
2022-01-28 11:58:28 +00:00
|
|
|
public string? Subtitle { get; set; }
|
2022-01-16 13:46:16 +00:00
|
|
|
|
|
|
|
[Parameter]
|
2022-01-28 11:58:28 +00:00
|
|
|
public string? Comment { get; set; }
|
2022-01-16 13:46:16 +00:00
|
|
|
|
|
|
|
[Parameter]
|
2022-01-28 11:58:28 +00:00
|
|
|
public string? Description { get; set; }
|
2022-01-16 13:46:16 +00:00
|
|
|
|
2022-01-17 16:46:54 +00:00
|
|
|
}
|