Skip to content

Commit ccae728

Browse files
committed
creating tabbed snippet
1 parent e35997f commit ccae728

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/declarative-customization/site-design-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ Once a site design is selected, SharePoint creates the new site, and then runs a
2323

2424
You can create a site design by using PowerShell, or the REST API. Here's an example that creates a new site design that creates a customer list and applies a theme.
2525

26+
> [!div class="tabbedCodeSnippets"]
2627
```powershell
2728
C:\> Add-SPOSiteDesign `
2829
-Title "Contoso customer tracking" `
2930
-WebTemplate "64" `
3031
-SiteScripts ("607aed52-6d61-490a-b692-c0f58a6981a1","5d4756e9-e1f5-42f7-afa7-5fa5aac170aa") `
3132
-Description "Creates customer list and applies standard theme" `
3233
```
33-
3434
```javascript
3535
RestRequest("/_api/Microsoft.Sharepoint.Utilities.WebTemplateExtensions.SiteScriptUtility.CreateSiteDesign", {info:{Title:"Contoso customer tracking", Description:"Creates customer list and applies standard theme", SiteScriptIds:["607aed52-6d61-490a-b692-c0f58a6981a1","5d4756e9-e1f5-42f7-afa7-5fa5aac170aa"], WebTemplate:"64"}});
3636
```

0 commit comments

Comments
 (0)