mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
31 lines
587 B
Plaintext
31 lines
587 B
Plaintext
@namespace Wabbajack.App.Blazor.Components
|
|
|
|
<footer id="bottom-bar">
|
|
<div class="image">
|
|
<img src="@Image" alt="">
|
|
</div>
|
|
<div class="info">
|
|
<div class="subtitle">@Subtitle</div>
|
|
<div class="title">@Title</div>
|
|
</div>
|
|
<div class="inside-content">
|
|
@ChildContent
|
|
</div>
|
|
</footer>
|
|
|
|
@code {
|
|
|
|
[Parameter]
|
|
public string Title { get; set; }
|
|
|
|
[Parameter]
|
|
public string Subtitle { get; set; }
|
|
|
|
[Parameter]
|
|
public string Image { get; set; }
|
|
|
|
[Parameter]
|
|
public RenderFragment ChildContent { get; set; }
|
|
|
|
}
|