public ActionResult Index() { var model = new SiteModel(_context, null); this.SetSeoContent(model); ViewBag.IsHomePage = true; return View(model); }
public ActionResult SiteContent(string id) { var model = new SiteModel(_context, id); ViewBag.IsHomePage = model.IsHomePage; ViewBag.CurrentPage = model.Content.Name; this.SetSeoContent(model); return View(model); }