我需要一些“自定义SharePoint模板”的帮助。有没有办法将.PSD转换为SharePoint模板?我有将.PSD转换为Wordpress主题的经验,但您可以在SharePoint中执行相同的操作吗?在线任何好的教程?
答案 0 :(得分:3)
您可以通过自定义 MasterPage
来创建SharePoint模板要开始使用,请创建一个最小的MasterPage:How to: Create a Minimal Master Page
使用最小的MasterPage将PSD切割为HTML。
SharePoint MasterPages
对PlaceHolder
有多个PageLayouts
控件,可在MasterPage
的特定部分插入内容。
页面特定内容的密钥PlaceHolder
为PlaceHolderMain
您可以在PageLayouts
中使用的其他占位符包括:
PlaceHolderPageTitle
用于页面标题(<head><title>[Page Title]</title>...</head>
内的文字)PlaceHolderAdditionalPageHead
其他CSS / JavaScript包括母版:
<asp:ContentPlaceHolder id="PlaceHolderMain" runat="server" />
页面布局:
<asp:Content ContentPlaceHolderId="PlaceHolderMain" runat="server">
... <!-- page specific content, usually involving a WebPartManager -->
</asp:Content>
补充阅读: