@model BuildFeed.Models.MetaItem @{ ViewBag.Title = string.Format("Add metadata for {0} | BuildFeed", Model.Id.Value); }

@string.Format("Add metadata for {0}", Model.Id.Value)

@using (Html.BeginForm()) { @Html.AntiForgeryToken() @Html.HiddenFor(model => model.Id.Type); @Html.HiddenFor(model => model.Id.Value);
@Html.LabelFor(model => model.MetaDescription, htmlAttributes: new { @class = "control-label col-sm-2" })
@Html.TextAreaFor(model => model.MetaDescription, new { @class = "form-control", rows = "2" })
@Html.ValidationMessageFor(model => model.MetaDescription)
@Html.LabelFor(model => model.PageContent, new { @class = "control-label col-sm-2" })
@Html.TextAreaFor(model => model.PageContent, new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.PageContent)
} @section Scripts { @Scripts.Render("~/bundles/jqueryval") }