Setup layout file ================= After creating a new Episerver project, you will have a folder structor that looks like this: .. image:: images/intfolderstructor.png add a _ViewStart.cshtml file in the view folder .. image:: images/AddViewStart.png whit the following .. literalinclude:: ../../src/EpiserverCookBook/EpiserverCookBook/Views/_ViewStart.cshtml :language: html :emphasize-lines: 2 When a user want to see a page. Add a _layout.cshtml file in the shared folder .. image:: images/layoutfolder.png example of a basic layout file with boostrap. @RenderBody, is where the page will be renderet .. literalinclude:: ../../src/EpiserverCookBook/EpiserverCookBook/Views/Shared/_Layout.cshtml :language: html :emphasize-lines: 12