Skip to content

Instantly share code, notes, and snippets.

@willprice76
Created September 7, 2012 11:21
Show Gist options
  • Save willprice76/3665295 to your computer and use it in GitHub Desktop.
Save willprice76/3665295 to your computer and use it in GitHub Desktop.
Pageless Tridion Content News Detail View
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<XDocument>" %>
<html>
<head>
<title><%=Model.Root.Element("heading").Value %></title>
<meta name="description" content="<%=Model.Root.Element("metadata").Element("description") %>" />
</head>
<body>
<h1><%=Model.Root.Element("heading").Value %></h1>
<%=Html.Raw(Model.Root.Element("body").ToString())%>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment