40 lines
1 KiB
Text
40 lines
1 KiB
Text
@model Page
|
|
@{
|
|
ViewData["Title"] = "Home Page";
|
|
}
|
|
|
|
|
|
|
|
|
|
<!-- FOR DEMO PURPOSE -->
|
|
<section id="MainContent" class="text-white">
|
|
<div class="container py-1">
|
|
@* <div class="col-12" id="boxBanner">
|
|
<h1 class="display-6 text-white font-weight-bold">@Model.Description.ToUpper()</h1>
|
|
</div> *@
|
|
<div id="rowSectionMain">
|
|
|
|
<div class="col-lg-12" id="boxMain">
|
|
<h4 class="font-weight-bold text-white">@Model.Title.ToUpper()</h4>
|
|
|
|
|
|
@* <p class="fst-italic text-muted">@Html.Raw(Model.Content) <a class="text-primary" href="@Model.Sitecopyright" target="_blank">SeoSoft</a></p> *@
|
|
<p class="text-white">@Html.Raw(Model.Content)</p>
|
|
<a href="#" class="btn btn-sm mt-1" id="HomeButon"> Contact</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
|
|
|
|
|
|
@section Scripts {
|
|
|
|
|
|
@{
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|
|
}
|