PSD到SharePoint模板

时间:2011-04-05 16:24:01

标签: templates sharepoint xhtml photoshop

我需要一些“自定义SharePoint模板”的帮助。有没有办法将.PSD转换为SharePoint模板?我有将.PSD转换为Wordpress主题的经验,但您可以在SharePoint中执行相同的操作吗?在线任何好的教程?

1 个答案:

答案 0 :(得分:3)

您可以通过自定义 MasterPage

来创建SharePoint模板

要开始使用,请创建一个最小的MasterPage:How to: Create a Minimal Master Page

使用最小的MasterPage将PSD切割为HTML。

SharePoint MasterPagesPlaceHolder有多个PageLayouts控件,可在MasterPage的特定部分插入内容。

页面特定内容的密钥PlaceHolderPlaceHolderMain

您可以在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>

补充阅读: