Book Image

SharePoint 2013 WCM Advanced Cookbook

By : JOHN CHAPMAN
Book Image

SharePoint 2013 WCM Advanced Cookbook

By: JOHN CHAPMAN

Overview of this book

Table of Contents (19 chapters)
SharePoint 2013 WCM Advanced Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Creating a page layout with three columns of web part zones


A page layout is a template used when creating new content pages in SharePoint. There are a number of page layouts included with SharePoint out of the box. When one of those doesn't suffice, we can easily create our own. In this recipe, we will modify the BlankWebPartPage.aspx page layout to have three columns, each with a web part zone. A web part zone is an area of the page where users can add web parts. A web part is an ASP.NET user control under the covers.

How to do it...

Follow these steps to create a page layout with three columns of web part zones:

  1. Open SharePoint Designer.

  2. Select Open Site. Enter the complete URL to the SharePoint site and select Open.

  3. From the Navigation pane, select Page Layouts.

  4. In the list of files in the Page Layouts library, make a copy of BlankWebPartPage.aspx (for our example, we have renamed it PageLayout_ThreeColumn.aspx).

    Note

    The Page Layouts view is a view of the _catalogs/masterpage library that...