Web Pages

Web Pages - Page layout syntax

Creating a consistently laid out website is easy with Web Pages.

Web Pages - Page layout example

<html>
<body>
@RenderPage("header.cshtml")
<h1>Hello Web Pages</h1> 
<p>This is a paragraph</p>
@RenderPage("footer.cshtml")
</body>
</html>