我正在使用opencms 10.
通过关注this链接
创建了简单的jsp模板<%@page buffer="none" session="false" trimDirectiveWhitespaces="true" %>
<%@ taglib prefix="cms" uri="http://www.opencms.org/taglib/cms" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<!DOCTYPE html>
<html>
<head>
<cms:enable-ade />
</head>
<body>
<div id="header">
<cms:container name="headercontainer" type="header" maxElements="1" />
</div>
<div id="window">
<cms:container name="centrecontainer" type="center" maxElements="8" detailview="true"/>
</div>
<div id="footerColumn">
<cms:container name="footercontainer" type="footer" maxElements="1"/>
</div>
</body>
</html>
说它是main.jsp
。在此之后,我创建了一个新的container-page
说my-fist-template.html
并设置了以下属性
template = /system/modules/my.first.module/templates/main.jsp
然后我创建了一个新的资源类型说 myResourceType 。我还为新创建的资源类型创建了xsd和formatter。
之后我打开my-fist-template.html
进行编辑。我无法添加布局,简单的滑块,灵活的内容等(opencms创建的每个/默认资源类型)但是我能够放置我新创建的资源类型 myResourceType
的。
我错过了什么?
答案 0 :(得分:0)
如果将容器类型更改为区域或元素,则可以分别放置布局或资源类型。像下面的东西
<cms:container name="mycontainer" type="area" maxElements="1"/> // Here you can put layouts (and then other resource types into the layouts)
<cms:container name="myothercontainer" type="element" maxElements="1"/> // Here you can put resource types into the container directly
希望这有帮助