2022-01-20 08:34:38 +00:00
|
|
|
@namespace Wabbajack.App.Blazor.Components
|
|
|
|
|
|
|
|
<footer id="bottom-bar">
|
|
|
|
<div class="image">
|
2022-01-20 10:19:10 +00:00
|
|
|
<img src="@Image" alt="">
|
2022-01-20 08:34:38 +00:00
|
|
|
</div>
|
|
|
|
<div class="info">
|
2022-01-20 10:19:10 +00:00
|
|
|
<div class="subtitle">@Subtitle</div>
|
|
|
|
<div class="title">@Title</div>
|
2022-01-20 08:34:38 +00:00
|
|
|
</div>
|
2022-01-20 10:19:10 +00:00
|
|
|
<div class="inside-content">
|
|
|
|
@ChildContent
|
2022-01-20 08:34:38 +00:00
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
@code {
|
|
|
|
|
2022-01-20 10:19:10 +00:00
|
|
|
[Parameter]
|
2022-01-28 11:58:28 +00:00
|
|
|
public string? Title { get; set; }
|
2022-01-20 10:19:10 +00:00
|
|
|
|
|
|
|
[Parameter]
|
2022-01-28 11:58:28 +00:00
|
|
|
public string? Subtitle { get; set; }
|
2022-01-20 10:19:10 +00:00
|
|
|
|
|
|
|
[Parameter]
|
2022-01-28 11:58:28 +00:00
|
|
|
public string? Image { get; set; }
|
2022-01-20 10:19:10 +00:00
|
|
|
|
|
|
|
[Parameter]
|
2022-01-28 11:58:28 +00:00
|
|
|
public RenderFragment? ChildContent { get; set; }
|
2022-01-20 10:19:10 +00:00
|
|
|
|
2022-01-20 08:34:38 +00:00
|
|
|
}
|