增加初始版本
diff --git a/tomcat-7.0.42/webapps/ROOT/html/portlet/layout_prototypes/toolbar.jsp b/tomcat-7.0.42/webapps/ROOT/html/portlet/layout_prototypes/toolbar.jsp
new file mode 100644
index 0000000..af2dd7d
--- /dev/null
+++ b/tomcat-7.0.42/webapps/ROOT/html/portlet/layout_prototypes/toolbar.jsp
@@ -0,0 +1,39 @@
+<%--
+/**
+ * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
+ *
+ * This library is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation; either version 2.1 of the License, or (at your option)
+ * any later version.
+ *
+ * This library is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
+ * details.
+ */
+--%>
+
+<%@ include file="/html/portlet/layout_prototypes/init.jsp" %>
+
+<%
+String toolbarItem = ParamUtil.getString(request, "toolbarItem");
+%>
+
+<aui:nav-bar>
+ <aui:nav>
+ <portlet:renderURL var="viewLayoutPrototypesURL">
+ <portlet:param name="struts_action" value="/layout_prototypes/view" />
+ </portlet:renderURL>
+
+ <c:if test="<%= PortalPermissionUtil.contains(permissionChecker, ActionKeys.ADD_LAYOUT_PROTOTYPE) %>">
+ <portlet:renderURL var="addLayoutPrototypeURL">
+ <portlet:param name="struts_action" value="/layout_prototypes/edit_layout_prototype" />
+ <portlet:param name="redirect" value="<%= viewLayoutPrototypesURL %>" />
+ <portlet:param name="backURL" value="<%= viewLayoutPrototypesURL %>" />
+ </portlet:renderURL>
+
+ <aui:nav-item href="<%= addLayoutPrototypeURL %>" iconCssClass="icon-plus" label="add" selected='<%= toolbarItem.equals("add") %>' />
+ </c:if>
+ </aui:nav>
+</aui:nav-bar>
\ No newline at end of file