Adding a syndicate pairing page with some notes

This commit is contained in:
2026-07-17 17:12:39 -04:00
parent 8fa0422be4
commit e64193639e
50 changed files with 1689 additions and 398 deletions
+3 -3
View File
@@ -6,7 +6,7 @@
<HeadContent>
<meta name="description"
content="@(deck != null ? $"View details for the {deck.Name} deck. {deck.Cards.Count} cards, {deck.Factions.Count} factions." : "Deck details and card list.")"/>
content="@(deck != null ? $"View details for the {deck.Name} deck. {deck.Cards.Count} cards, {deck.Syndicates.Count} factions." : "Deck details and card list.")"/>
</HeadContent>
<div class="deck-detail-page">
@@ -26,10 +26,10 @@
<h1>@deck.Name</h1>
<b>Deck Code:</b>
<pre>@deck.DeckCode</pre>
@if (deck.Factions.Count > 0)
@if (deck.Syndicates.Count > 0)
{
<div class="deck-factions">
@foreach (var f in deck.Factions)
@foreach (var f in deck.Syndicates)
{
<span class="faction-badge">@f</span>
}