Partial view containing card tag helper HTML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@model TagHelpersDemo.Views.Shared.Partials.CardViewModel | |
<img src="images/@(Model.PlayerName).png" alt="avatar" class="center-block" /> | |
<div class="text-center"> | |
<h2 class="@Model.SuitColorClass"> | |
<strong>@Html.Raw(Model.SuitCharacterCode)</strong> | |
</h2> | |
<p>@Model.Rank</p> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment