Created
January 30, 2017 13:50
-
-
Save scottaddie/6e903d491f390a59c7f817179041f0a2 to your computer and use it in GitHub Desktop.
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