Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
inetpub
/
wwwroot
/
DoorstepHealthCare
/
Views
/
Home
/
View File Name :
WhoweareList.cshtml
@model IEnumerable<DoorstepHealthCare.Models.whoweare> @{ ViewBag.Title = "Doorstep Healthcare Service"; Layout = "~/Views/Shared/ListLayout.cshtml"; } <section class="page-heading"> <!--twitter-feed--> <div class="container animated fadeInDown delay-07s wow"> <div class="twitter_bird"><span><i class="fa-medkit"></i></span></div> <p> List of <em>Who We Are</em> </p> </div> </section> <div class="container"> <div class="row"> <div class="section widget-section"> <div class="col-sm-10 col-xs-12"> <div class="paragraph-block bottom-margin"> <table class="custom-table-properties"> <thead> <tr> <th></th> </tr> </thead> <tbody> @foreach (var item in Model) { <tr> <td> <hr /> <h4>@item.ContentTitle</h4> <div class="row"> <div class="col-sm-2 col-xs-12"> <div class="img-list-wrap"> <img src="~/Content/Assets/Images/whoweare/@item.ContentImage" height="100" width="120" alt=""> </div> </div> <div class="col-sm-10 col-xs-12"> <p class="black-color">@item.ContentDescription.Substring(0, 350)</p> @Html.ActionLink("Read More", "WhoweareDetail", new { id = item.ContentID }, new { @class = "btn btn-blue" }) </div> </div> </td> </tr> } </tbody> </table> </div> </div> </div> </div> </div>