mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-19 22:08:34 -04:00
26 lines
494 B
Plaintext
26 lines
494 B
Plaintext
@using Sandbox;
|
|
@using Sandbox.UI;
|
|
@using MenuProject.UI;
|
|
@inherits Panel
|
|
|
|
<root class="content-block-header">
|
|
<a class="inner" href="@url">
|
|
<span class="icon">@Group.Icon </span>
|
|
<span class="title">@Group.Title</span>
|
|
</a>
|
|
</root>
|
|
|
|
@code
|
|
{
|
|
[Parameter]
|
|
public Package.ListResult.Grouping Group { get; set; }
|
|
|
|
string url => $"/games/group?Query={Group.QueryString}&title={Group.Title}&icon={Group.Icon}";
|
|
|
|
void HeaderClicked()
|
|
{
|
|
|
|
}
|
|
|
|
}
|