@{ ViewData["Title"] = "Rules"; Layout = "~/Views/Shared/_Layout.cshtml"; } @using LotteryWebApp.Languages; @using LotteryWebApp.Controllers; @using LotteryWebApp.Common; @model HomeRules_ViewModel
@await Component.InvokeAsync("SmallHeader", new { title = Lang.rules.ToUpper()})
@{ if (Model.termType == Constants.BOULCHANS_CODE) {
BOULCHANS
@Html.Raw(Question.h7)

} else if (Model.termType == Constants.NEW_YORK_BOLET_CODE) {
@Html.Raw(Question.h1)

@Html.Raw(Question.h2)

@Html.Raw(Question.h3)

} else {
@Html.Raw(Question.h4)

@Html.Raw(Question.h5)

@Html.Raw(Question.h6)

} }