Some I'm running a slightly modified version of the Nancy Web Framework self hosting demo, Nancy.Demo.Hosting.Self. I've modified it to include the Nancy's Razor view engine, Nancy.ViewEngines.Razor. It works fine when I use basic Razor features, but I've run into trouble with @Render partial views and layouts.
Are these advanced features supported outside of ASP.NET?
The same views I copied from Nancy.Demo.Hosting.Aspnet, seem to work fine there.
I'm getting a crash about not finding my 'Header'.
Here's the view:
@{ Layout = "razor-layout.cshtml"; }
@section Header {
<!-- This comment should appear in the header -->
}
<h1>Hello @Model.FirstName</h1>
<p>This is a sample Razor view!</p>
@section Footer {
<p>This is footer content!</p>
}
And the Layout
<html>
<head>
<title>Razor View Engine Demo - @Model.FirstName</title>
@RenderSection("Header")
</head>
<body>
<div id="body">@RenderBody()</div>
<div id="footer">@RenderSection("Footer")</div>
<div id="optional">@RenderSection("Optional", false)</div>
</body>
</html>