← Back to list

Add a modern page with a modern template in SharePoint.

It’s easy to make a modern template in SharePoint now. You build your regular “modern page”, with your content type and after saving you…

Alex · 2019-10-15 08:40 · 3 claps · 0.7 min read
#sharepoint #modern-sharepoint #template
Open on Medium ↗
Wiki topics: PFI · Personal Finance

Add a modern page with a modern template in SharePoint.

It’s easy to make a modern template in SharePoint now. You build your regular “modern page”, with your content type and after saving you click “promote”. A menu on the right opens and shows some sharing stuff.

You can save the page a s a “page template”. SharePoints saves it at “SitePages” in the folder “Templates”.

If you want to create a new page based on that saved template from a SP widget, use the file REST API:

/_api/web/getfilebyserverrelativeurl(‘${source_url}’)/copyto(strnewurl=’${target_url}’,boverwrite=false)

Source URL is the relative URL form your template:

const source_url = ${_spPageContextInfo.webServerRelativeUrl}/SitePages/Templates/Your-Template.aspx;

Attention: _spPageContextInfo.webServerRelativeUrl is only available in classic context. You need to find the webserverrelativeurl in the context object in a SPFx webpart.


메타데이터
post_id
b2d27015d54c
slug
add-a-modern-page-with-a-modern-template-in-sharepoint-b2d27015d54c
url
https://medium.com/@leetcore/add-a-modern-page-with-a-modern-template-in-sharepoint-b2d27015d54c
canonical_url
https://medium.com/@leetcore/add-a-modern-page-with-a-modern-template-in-sharepoint-b2d27015d54c
author_url
https://medium.com/@leetcore
status
ok
fetched_at
2026-06-26 21:52:29