00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Text; 00005 00006 namespace N2.Web.Mvc 00007 { 00008 public static class Traversal 00009 { 00013 public static ContentItem ClosestPage(this ContentItem item) 00014 { 00015 if (item == null) return null; 00016 if (item.IsPage) return item; 00017 00018 return item.Parent.ClosestPage(); 00019 } 00020 } 00021 }