Skip to content

Instantly share code, notes, and snippets.

@garydevenay
Created November 9, 2015 10:34
Show Gist options
  • Save garydevenay/e8c4ddf3a948c94bc738 to your computer and use it in GitHub Desktop.
Save garydevenay/e8c4ddf3a948c94bc738 to your computer and use it in GitHub Desktop.
using System.Web.Mvc;
using Umbraco.Web;
namespace Umbraco.Example.Controllers
{
public class HomeController : RenderMvcController
{
// GET: Home
public ActionResult Home()
{
var home = this.Umbraco.TypedContent(1);
return View(home);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment