<%@ page session="false" buffer="none" import="org.opencms.frontend.templateone.*" %><% // initialise Cms Action Element CmsTemplateImprint cms = new CmsTemplateImprint(pageContext, request, response); if (cms.template("head")) { cms.includePopup("popuphead", cms.key("imprint.headline")); } if (cms.template("headline")) { %>

<%= cms.key("imprint.headline") %>

<%= cms.getImprintValue("text.head") %> <% } if (cms.template("content")) { %> <% } if (cms.template("foot")) { String linkPrivacy = cms.getLinkPrivacy(); String linkLegal = cms.getLinkLegalNotes(); boolean showPrivacy = !"#".equals(linkPrivacy); boolean showLegal = !"#".equals(linkLegal); String textFoot = cms.getImprintValue("text.foot"); if (!"".equals(textFoot)) { %>
<%= textFoot %>
<% } if (showLegal || showPrivacy) { %>
<% if (showPrivacy) { %><%= cms.key("link.imprint.privacy") %><% if (showLegal) { %> | <% } %><% } %> <% if (showLegal) { %><%= cms.key("link.imprint.legal") %><% } %>
<% } cms.includePopup("popupfoot", null); } %>