Esempio n. 1
0
 private XElement RenderDetails()
 {
     return(PageDocument.BuildSection(
                PageDocument.BuildBody(
                    PageDocument.BuildColumn("300px", RenderStats()),
                    PageDocument.BuildColumn("200px", RenderLinks()),
                    PageDocument.BuildColumn(null, RenderHistory()))));
 }
Esempio n. 2
0
        private XElement RenderAbout()
        {
            if (About == null)
            {
                About = PageDocument.BuildBody(new XElement("p", "..."));
            }

            return(PageDocument.BuildSection(About));
        }