blob: 8a97f4f378cc73e6c3ed4465e3d99a7578a3d697 [file] [log] [blame]
<%-- /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/ --%>
<%@include file="/libs/sling-cms/global.jsp"%>
<sling:adaptTo adaptable="${resource}" adaptTo="org.apache.sling.cms.PublishableResource" var="publishableResource" />
<td data-value="${publishableResource.published ? 0 : 1}">
<c:choose>
<c:when test="${publishableResource.published}">
<fmt:message key="Content Published" var="publishedMessage" />
<a class="button is-success is-outlined Fetch-Modal" href="/cms/shared/unpublish.html${resource.path}" title="${publishedMessage}" data-title="Unpublish" data-path=".Main-Content form">
<i class="jam jam-check">
<span class="is-sr-only">${publishedMessage}</span>
</i>
</a>
</c:when>
<c:otherwise>
<fmt:message key="Content Not Published" var="notPublishedMessage" />
<a class="button is-warning is-outlined Fetch-Modal" href="/cms/shared/publish.html${resource.path}" title="${notPublishedMessage}" data-title="Publish" data-path=".Main-Content form">
<i class="jam jam-close">
<span class="is-sr-only">${notPublishedMessage}</span>
</i>
</a>
</c:otherwise>
</c:choose>
</td>