0

我正在尝试使用一些基本的 css 和一些页眉和页脚创建一个基本的 liferay maven 主题

我创建了一个页面并为该页面应用了这个主题。

基本上我的主题文件夹结构是

sample-theme
sample-theme/pom.xml
sample-theme/src
sample-theme/src/main
sample-theme/src/main/resources
sample-theme/src/main/webapp
sample-theme/src/main/webapp/WEB-INF
sample-theme/src/main/webapp/WEB-INF/liferay-plugin-package.properties
sample-theme/src/main/webapp/WEB-INF/web.xml

我的 portal_normal.vm 的路径是

sample-theme\src\main\webapp\WEB-INF\_diffs\templates\portal_normal.vm

当我打开页面时,我进入theme_SERVLET_CONTEXT_/templates/portal_normal.vm does not exist控制台。

可能是什么问题?

4

1 回答 1

0

你有一个错误的theme结构。_diffs构建themein时不需要文件夹Maven

下面的屏幕截图显示了theme在构建themein时必须遵循的结构Maven

Maven Liferay 主题

以下是中的定义pom.xml

插入

     <plugin>
            <groupId>com.liferay.maven.plugins</groupId>
            <artifactId>liferay-maven-plugin</artifactId>
            <version>${liferay.version}</version>
            <executions>
                <execution>
                    <phase>generate-sources</phase>
                    <goals>
                        <goal>theme-merge</goal>
                        <goal>build-css</goal>
                        <goal>build-thumbnail</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <autoDeployDir>${liferay.auto.deploy.dir}</autoDeployDir>
                <appServerDeployDir>${liferay.app.server.deploy.dir}</appServerDeployDir>
                <appServerLibGlobalDir>${liferay.app.server.lib.global.dir}</appServerLibGlobalDir>
                <appServerPortalDir>${liferay.app.server.portal.dir}</appServerPortalDir>
                <liferayVersion>${liferay.version}</liferayVersion>
                <parentTheme>${liferay.theme.parent}</parentTheme>
                <pluginType>theme</pluginType>
                <themeType>${liferay.theme.type}</themeType>
            </configuration>
    </plugin>

特性

<liferay.theme.parent>classic</liferay.theme.parent>
<liferay.theme.type>vm</liferay.theme.type>
于 2013-08-08T21:16:52.540 回答