?? recommend
字號(hào):
<%@page buffer="none" session="false" import="org.opencms.jsp.*" %><%
// initialize action element to access the API
CmsJspActionElement cms = new CmsJspActionElement(pageContext, request, response);
String template = "/system/modules/org.opencms.frontend.templateone/templates/main";
if (cms.template("head")) {
// include the template head part
cms.include(template, "head");
}
if (cms.template("content")) {
%>
<div class="element"><span style="font-weight:bold; font-size: 1.2em">Form Head</span><br>
<% cms.includeSilent(null, "form_head", true); %>
</div>
<div class="element"><span style="font-weight:bold; font-size: 1.2em">Form Foot</span><br>
<% cms.includeSilent(null, "form_foot", true); %>
</div>
<div class="element"><span style="font-weight:bold; font-size: 1.2em">Mail Head</span><br>
<% cms.includeSilent(null, "mail_head", true); %>
</div>
<div class="element"><span style="font-weight:bold; font-size: 1.2em">Mail Foot</span><br>
<% cms.includeSilent(null, "mail_foot", true); %>
</div>
<div class="element"><span style="font-weight:bold; font-size: 1.2em">Confirmation Head</span><br>
<% cms.includeSilent(null, "confirm_head", true); %>
</div>
<div class="element"><span style="font-weight:bold; font-size: 1.2em">Confirmation Foot</span><br>
<% cms.includeSilent(null, "confirm_foot", true); %>
</div>
<%
}
if (cms.template("foot")) {
// include the template foot part
cms.include(template, "foot");
}
%>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -