<%@include file="init.jsp"%> <% long groupId = themeDisplay.getLayout().getGroupId(); pageContext.setAttribute("icondocURL", GetterUtil.getString(portletPreferences.getValue("icondocURL", StringPool.BLANK))); pageContext.setAttribute("exploratoryName1Title", GetterUtil.getString(portletPreferences.getValue("exploratoryName1-Title", StringPool.BLANK))); pageContext.setAttribute("exploratoryName2Title", GetterUtil.getString(portletPreferences.getValue("exploratoryName2-Title", StringPool.BLANK))); pageContext.setAttribute("exploratoryName3Title", GetterUtil.getString(portletPreferences.getValue("exploratoryName3-Title", StringPool.BLANK))); long exploratoryName1DocumentId = GetterUtil .getLong(portletPreferences.getValue("exploratoryName1-DocumentId", StringPool.BLANK)); long exploratoryName2DocumentId = GetterUtil .getLong(portletPreferences.getValue("exploratoryName2-DocumentId", StringPool.BLANK)); long exploratoryName3DocumentId = GetterUtil .getLong(portletPreferences.getValue("exploratoryName3-DocumentId", StringPool.BLANK)); pageContext.setAttribute("exploratory1Url", GetterUtil.getString(portletPreferences.getValue("exploratory1-Url", StringPool.BLANK))); pageContext.setAttribute("exploratory2Url", GetterUtil.getString(portletPreferences.getValue("exploratory2-Url", StringPool.BLANK))); pageContext.setAttribute("exploratory3Url", GetterUtil.getString(portletPreferences.getValue("exploratory3-Url", StringPool.BLANK))); String content1 = ""; if (exploratoryName1DocumentId > 0) { JournalArticle article = JournalArticleLocalServiceUtil.getArticle(groupId, "" + exploratoryName1DocumentId); Document document = SAXReaderUtil.read(article.getContent()); Node node = document.selectSingleNode("/root/static-content"); content1 = node.getText(); } String content2 = ""; if (exploratoryName2DocumentId > 0) { JournalArticle article = JournalArticleLocalServiceUtil.getArticle(groupId, "" + exploratoryName2DocumentId); Document document = SAXReaderUtil.read(article.getContent()); Node node = document.selectSingleNode("/root/static-content"); content2 = node.getText(); } String content3 = ""; if (exploratoryName3DocumentId > 0) { JournalArticle article = JournalArticleLocalServiceUtil.getArticle(groupId, "" + exploratoryName3DocumentId); Document document = SAXReaderUtil.read(article.getContent()); Node node = document.selectSingleNode("/root/static-content"); content3 = node.getText(); } %>

${exploratoryName1Title}

<% if (content1.length() > 225) out.println(HtmlUtil.stripHtml(content1.substring(0, 222) + " ...")); %>
Read More »

${exploratoryName2Title}

<% if (content2.length() > 225) out.println(HtmlUtil.stripHtml(content2.substring(0, 222) + " ...")); %>
Read More »

${exploratoryName3Title}

<% if (content3.length() > 225) out.println(HtmlUtil.stripHtml(content3.substring(0, 222) + " ...")); %>
Read More »