1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<Configurator xmlns="http://schemas.mavention.com/SharePoint/Apps/SiteConfigurator">
<Providers>
<Provider Assembly="Mavention.Make.Engine" Class="Mavention.Make.Engine.Providers.PublishingSiteProvider" NodeName="PublishingSite"></Provider>
</Providers>
<PublishingSite Url="{url}" Title="{title}" Template="BLANKINTERNETCONTAINER#0" LCID="1033" UserCodeQuota="0" StorageQuota="0" OwnerLogin="{owner}">
<RootWeb DefaultPageLayout="ProjectPage.aspx">
<Properties>
<Property Name="WebTemplate">TestPublishingSite</Property>
<Property Name="WebTemplateVersion">1.0.0.0</Property>
</Properties>
<Webs>
<PublishingWeb>
<Web Title="News" Url="news" Template="BLANKINTERNET#0" LCID="1033">
</Web>
<PublishingPages>
<PublishingPage Name="welcome.aspx" PageLayout="BlankWebPartPage.aspx">
<Properties>
<Property Name="Title">Welcome to {title}</Property>
<Property Name="PublishingPageLayout">{url}/_catalogs/masterpage/BlankWebPartPage.aspx, Welcome Page</Property>
</Properties>
</PublishingPage>
</PublishingPages>
</PublishingWeb>
</Webs>
</RootWeb>
</PublishingSite>
</Configurator>
|