#set($theme_image_path = $request.get("theme-display").get("path-theme-images"))
#24 Hour Webcast 6:00pm PST - Bradley Wood Watch Webcast
- Demo 3rd level Navigation with Dropdown and CSS
- Show how to use assets.json with the Resources Importer
- add abstract summary for web content
- add small image for web content
- tag web content and documents
- Note: Check Test Resources Importer Portlet
- Show Localized Web Content being used with resources importer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="carousel"> | |
<div class="clear"></div> | |
<div id="slides"> | |
<ul> | |
<li><img src="http://placehold.it/300x240&text=Image 1" width="300" height="240" alt="Slide 1"/></li> | |
<li><img src="http://placehold.it/300x240&text=Image 2" width="300" height="240" alt="Slide 2"/></li> | |
<li><img src="http://placehold.it/300x240&text=Image 3" width="300" height="240" alt="Slide 3"/></li> | |
<li><img src="http://placehold.it/300x240&text=Image 4" width="300" height="240" alt="Slide 1"/></li> | |
<li><img src="http://placehold.it/300x240&text=Image 5" width="300" height="240" alt="Slide 2"/></li> | |
<li><a href="http://randombrad.com"><img src="http://placehold.it/300x240&text=Image 6" width="300" height="240" alt="Slide 3"/></a></li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
"http://www.w3.org/TR/html4/strict.dtd"> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>A Simple Carousel</title> | |
</head> | |
<body> | |
<div class="carousel"> | |
<div id="buttons"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var navPortlet = A.one('.nav-menu'); | |
var checkLanguage = false; | |
if (Liferay.ThemeDisplay.getLanguageId() != Liferay.ThemeDisplay.getDefaultLanguageId()) { | |
var checkLanguage = true; | |
} | |
if(navPortlet && checkLanguage){ | |
var links = navPortlet.all('a'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<root available-locales="en_US,es_ES"> | |
<static-content language-id="es_ES"><![CDATA[<p class="small"> | |
<span class="attention">holla</span><br /> | |
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Soluta aspernatur earum saepe. Quaerat voluptate debitis. Eius accusantium quis voluptatibus delectus nesciunt voluptatem facilis ipsam incidunt quisquam itaque assumenda explicabo dolorum consequatur nobis impedit perspiciatis illo? Vitae ea dignissimos illum reiciendis numquam voluptate repudiandae laborum non dolor pariatur quidem aliquam reprehenderit.</p> | |
<p class="small"> | |
<span class="attention">Duis Enum Turpis</span><br /> | |
Praesentium labore iusto quod vitae at eveniet eligendi accusantium porro perferendis dignissimos quasi natus asperiores inventore reprehenderit optio voluptatem alias quo tempora quia similique rerum magnam dicta quidem aliquid exercitationem aliquam earum aspernatur sunt ad hic? Dolores asperiores quaerat vitae pariatur itaque eveniet atque ea est sit mi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
DLFileEntry dlFileEntry = DLFileEntryLocalServiceUtil.getFileEntry(scopeGroupId, 0, imageName); | |
//TODO replace folderid | |
FileEntry fileEntry = DLAppLocalServiceUtil.getFileEntry(scopeGroupId, 0, imageName); | |
String previewURL = DLUtil.getPreviewURL(fileEntry, fileEntry.getLatestFileVersion(), themeDisplay, ""); | |
%> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"portletId": "simpleimage_WAR_simpleimageportlet", | |
"portletPreferences": { | |
"groupId": "${groupId}", | |
"name": "house_pic", | |
"width": "524", | |
"height": "162" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background: #000; | |
} | |
body.portal-popup { | |
background: none; | |
} |