2022-01-16 13:46:16 +00:00
|
|
|
<div id="info-block">
|
2022-01-16 17:38:54 +00:00
|
|
|
@if (Supertitle != string.Empty)
|
|
|
|
{
|
|
|
|
<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-16 17:38:54 +00:00
|
|
|
[Parameter]
|
|
|
|
public string Supertitle { get; set; } = string.Empty;
|
|
|
|
|
2022-01-16 13:46:16 +00:00
|
|
|
[Parameter]
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
|
|
[Parameter]
|
|
|
|
public string Subtitle { get; set; }
|
|
|
|
|
|
|
|
[Parameter]
|
|
|
|
public string Comment { get; set; }
|
|
|
|
|
|
|
|
[Parameter]
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
|
|
}
|