@model Petwork.Web.Models.Business.WelcomePageModel @{ ViewBag.Title = "EditWelcomePage"; Layout = "~/Views/Shared/_LayoutTwoBars.cshtml"; Html.DoSelect("sidebar", "Welcome"); }
@Resources.Business.EditProfile @Resources.Business.DoneEditing

@Model.Profile.CommercialName @foreach (var tag in Model.Profile.ServiceTags) { @(" - " + tag.Tag) }

@Resources.Business.AddNewSection
@foreach (var section in Model.LargeSections) { @Html.Action("PageSectionEdit", "Page", section); }
@Resources.Business.AddNewSection
@foreach (var section in Model.SmallSections) { @Html.Action("PageSectionEdit", "Page", section); }
@section sidebar { @Html.Partial("BusinessProfileSidebar") } @section foot { }