SlideShare une entreprise Scribd logo
1  sur  34
Themes & Layout Tutorial
Copyright © 2000-2006 Liferay, Inc.
All Rights Reserved.
No material may be reproduced electronically or in print without written
permission from Liferay, Inc.
Objectives
1. Customize your own Liferay Theme
a. Introduction to Liferay Themes
b. Deploy a Liferay Theme
c. Modify example theme
2. Customize your own Liferay Layout
a. Create a custom 2-3 layout
- (2-3 = 2 column row on top of a 3 column row)
a. Select different layout templates
Introduction to Liferay Themes
With themes, you can quickly & completely
redesign a website layout with a single war file.
Lets see some examples:
- Themes from Liferay Website:
- Liferay.com -> downloads -> community themes
Exercise 1
Change the Liferay Theme
a. Startup Tomcat
b. On the Liferay website
“Page Settings” -> “Look and Feel” -> Select Theme
Portal
• Creating a theme can be a very time consuming
process, depending on what exactly needs to be done.
• Step 1: Identify the major components
Most themes contain the following elements:
• Banner
• Navigation
• Portlet area
• Some themes that are more graphically intensive also have a top,
bottom, and left and right sides.
Identify the major components
Identify the major components
Identify the major components
Portlets
• Step 2: Identify the portlet areas
– The next step is to identify your portlet areas.
All portlets are composed of 12 pieces.
• Look for all 12 pieces /
images of the portlet
• Notice that some
portlets have wide
borders and some
have thin, it all
depends on how your
portlet is supposed to
look
• If there are shadows
you need to
incorporate the entire
shadow in your image.
Exercise 2
Deploy your own “example.war” theme
and change Liferay’s homepage to
use that theme.
This theme will help distinguish each of
the pieces of the theme to give you
practice in editing themes.
Deploying your theme:
1. Startup Tomcat (if not already)
2. Copy “example.war” to your themes
folder:
C:ProjectsTrainingextthemesexample.war
3. “ant deploy” from your themes folder
4. Reload the page and select this theme
Step 3: Putting it all together
Portlet Area
You will need to cut your portlets up into 12 images like shown above, then populate the 12 portlet areas based on the
images you cut up (set the height, width, and file name of each images)
Hint: look for these lines
css_cached.vm:
extthemesexample.warhtmlthemesexampletemplatescss_cached.vm
– .portlet-header-bar-middle
– .portlet-header-bar-right
– .portlet-header-bar-left
– .portlet-corner-ul
– .portlet-corner-ur
– .portlet-corner-br
– .portlet-corner-bl
– .portlet-border-top
– .portlet-border-left
– .portlet-border-right
– .portlet-border-bottom
Banner
To build the banner you need to edit:
css_cached.vm:
extthemesexample.warhtmlthemesexampletemplatescss_cached.vm
• .layout-banner-left
• .layout-banner-middle
• .layout-banner-right
Usually only the middle is required, but if the theme needs to stretch along the x
axis you will need left and right as well.
Top, Bottom, Left, Right
Top and Bottom Decorations
css_cached.vm:
extthemesexample.warhtmlthemesexampletemplatescss_cached.vm
– #layout-top-decoration
– #layout-corner-ul
– #layout-corner-ur
– #layout-bottom-decoration
– #layout-corner-bl
– #layout-corner-br
Use these to build your top and bottom decorations
Left and Right Sides
css_cached.vm:
extthemesexample.warhtmlthemesexampletemplatescss_cached.vm
– #layout-box-left
– #layout-box-right
Look for these to edit the sides
Exercise 3
Modify the example.war theme to look like the one below
• Helpful Notes:
– border-left: 1px dotted black;
– In Firefox’s web developer extensions press (CTRL-SHFT-F) for helpful HTML info
• Files to modify:
– extthemesexample.warhtmlthemesexampletemplates
• css_cached.vm (css)
• portal_normal.vm (layout)
– extthemesexample.warWEB-INF
• liferay-look-and-feel.xml ($colorScheme)
Content and Layout
• Why new layouts?
– Variety is good
– Not all sites are the same
– Sometimes the defaults just don’t work for
your needs
• How do we do it?
– Layouttpl (Layout Template)
• 4.0.0 makes this process so much easier!
Prepare the layouts folder
• In the EXT directory navigate to the layouttpl folder
• Create a folder called sample.war here
> extlayouttplsample.war
• In sample.war, create two folders: WEB-INF and html
> extlayouttplsample.warWEB-INF
> extlayouttplsample.warhtml
• We have now setup the basic folder structure for layouts.
This is the process that must always be followed for new
layouts
Preparing supporting files
• Inside the WEB-INF folder that was just created, create a
file and name it liferay-layout-templates.xml
> extlayouttplsample.warWEB-INF
liferay-layout-templates.xml
• Now create one more file here, and call it web.xml
> extlayouttplsample.warWEB-INF
web.xml
liferay-layout-templates.xml
liferay-layout-templates.xml
extlayouttplsample.warWEB-INFliferay-layout-templates.xml
<?xml version="1.0"?>
<!DOCTYPE layout-templates PUBLIC "-//Liferay//DTD Layout Templates 4.0.0//EN"
"http://www.liferay.com/dtd/liferay-layout-templates_4_0_0.dtd">
<layout-templates>
<custom>
<layout-template id="training" name="training">
<template-path>/html/layouttpl/custom/training.tpl</template-path>
</layout-template>
</custom>
</layout-templates>
What did that do?
• Layout-templates is our root element, it tells Liferay that
we are defining new layouts
• Custom tells Liferay that this is not a built in template,
but something new
• Layout-template-id and name let Liferay know what to
– Display in add content
– Set as the unique id for this template
• Template-path tells Liferay where to find the template
structure (tpl) file
web.xml
web.xml
extlayouttplsample.warWEB-INFweb.xml
<?xml version="1.0"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application
2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<display-name>sample</display-name>
<listener>
<listener-
class>com.liferay.portal.kernel.servlet.LayoutTemplateContextListener</listener
-class>
</listener>
</web-app>
Preparing the tpl file
• In extlayouttplsample.warhtml,
– create a “layouttpl” folder:
• Inside layouttpl,
– create a “custom” folder:
• Inside custom,
– create the file “training.tpl”
• extlayouttplsample.warhtmllayouttplcustomtraining.tpl
2-3 column layout code
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td valign="top" width="45%">$processor.processColumn("column-1")</td>
<td width="10%">&nbsp;</td>
<td valign="top" width="45%">$processor.processColumn("column-2")</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td valign="top" width="30%">$processor.processColumn("column-3")</td>
<td width="5%">&nbsp;</td>
<td valign="top" width="30%">$processor.processColumn("column-4")</td>
<td width="5%">&nbsp;</td>
<td valign="top" width="30%">$processor.processColumn("column-5")</td>
</tr>
</table>
Deploy Layouts
• Navigate to ext/layouttpl
• Run ant deploy
• Open a web browser to http://localhost
• Login
• For this example, let’s create a new page
Let’s add content!
• Click Add Content
• Select your Layout Template
• Click test and add (portlets with small width):
• Hello Laszlo
• Hello Velocity
• Hello World
• Your sample portlet
Finish it
• Refresh your page
• Drag all the portlets around to fill the five
columns
Summary
• You should now know:
– How to create a basic theme
– How to create custom layouts
– How to add new content pages
– How to use change the layout template
• Things to practice
– The more CSS and HTML you know, the
better off you will be
– Getting a theme just right takes time. Don’t
lose faith, it is possible!
Congratulations!
Congratulations! You’ve just modified your own theme!
Login: test@liferay.com
Password: test
To hot deploy JSR-168 compliant portlets, Liferay layout templates, or
Liferay themes just drop your *.war files in C:/home/liferay/deploy
Sample portlets can be found here:
http://www.liferay.com/web/guest/downloads/samples
For more information on hot deploy, click here:
http://content.liferay.com/4.0.0/docs/developers/ch06s01.html
Revision History
Scott Lee 11/2/2006
- Created & Updated slides from Brett’s Theme Docs & Layout Ppt
Scott Lee 11/10/2006
- Fixed typos (Liferay-layout-templates.xml, tpl filepath)
- added “helpful notes” for excercise

Contenu connexe

En vedette

Principles Of Power Point Design- Working With Layout Grids
Principles Of Power Point Design- Working With Layout GridsPrinciples Of Power Point Design- Working With Layout Grids
Principles Of Power Point Design- Working With Layout GridsJohn Fallon
 
Principles Of Power Point Design- Slide Layout Do's And Don'ts
Principles Of Power Point Design- Slide Layout Do's And Don'tsPrinciples Of Power Point Design- Slide Layout Do's And Don'ts
Principles Of Power Point Design- Slide Layout Do's And Don'tsJohn Fallon
 
Modern Visual Design
Modern Visual DesignModern Visual Design
Modern Visual DesignBarry Nadler
 
Liferay Configuration and Customization
Liferay Configuration and CustomizationLiferay Configuration and Customization
Liferay Configuration and CustomizationThành Nguyễn
 
Struktur und Modell medienbezogener Störungen durch Social Media-Partizipatio...
Struktur und Modell medienbezogener Störungen durch Social Media-Partizipatio...Struktur und Modell medienbezogener Störungen durch Social Media-Partizipatio...
Struktur und Modell medienbezogener Störungen durch Social Media-Partizipatio...Anja Lorenz
 
EclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik Harabi
EclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik HarabiEclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik Harabi
EclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik HarabiRafik HARABI
 
Using mySQL in PHP
Using mySQL in PHPUsing mySQL in PHP
Using mySQL in PHPMike Crabb
 
Presentation & Pitching tips
Presentation & Pitching tipsPresentation & Pitching tips
Presentation & Pitching tipsABrandNewYou
 
Financial intelligent for start ups
Financial intelligent for start upsFinancial intelligent for start ups
Financial intelligent for start upsjubril
 
Intro to php
Intro to phpIntro to php
Intro to phpSp Singh
 
How to Use Publicity to Grow Your Startup
How to Use Publicity to Grow Your StartupHow to Use Publicity to Grow Your Startup
How to Use Publicity to Grow Your StartupJoy Schoffler
 
Why Learn PHP Programming?
Why Learn PHP Programming?Why Learn PHP Programming?
Why Learn PHP Programming?XtreemHeights
 
Intro to PHP for Beginners
Intro to PHP for BeginnersIntro to PHP for Beginners
Intro to PHP for Beginnersmtlgirlgeeks
 
Excel training for beginners
Excel training for beginnersExcel training for beginners
Excel training for beginnersParul Sharan
 

En vedette (20)

Principles Of Power Point Design- Working With Layout Grids
Principles Of Power Point Design- Working With Layout GridsPrinciples Of Power Point Design- Working With Layout Grids
Principles Of Power Point Design- Working With Layout Grids
 
Principles Of Power Point Design- Slide Layout Do's And Don'ts
Principles Of Power Point Design- Slide Layout Do's And Don'tsPrinciples Of Power Point Design- Slide Layout Do's And Don'ts
Principles Of Power Point Design- Slide Layout Do's And Don'ts
 
Modern Visual Design
Modern Visual DesignModern Visual Design
Modern Visual Design
 
Liferay Configuration and Customization
Liferay Configuration and CustomizationLiferay Configuration and Customization
Liferay Configuration and Customization
 
Presentation modern
Presentation modernPresentation modern
Presentation modern
 
Struktur und Modell medienbezogener Störungen durch Social Media-Partizipatio...
Struktur und Modell medienbezogener Störungen durch Social Media-Partizipatio...Struktur und Modell medienbezogener Störungen durch Social Media-Partizipatio...
Struktur und Modell medienbezogener Störungen durch Social Media-Partizipatio...
 
EclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik Harabi
EclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik HarabiEclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik Harabi
EclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik Harabi
 
Using mySQL in PHP
Using mySQL in PHPUsing mySQL in PHP
Using mySQL in PHP
 
Presentation & Pitching tips
Presentation & Pitching tipsPresentation & Pitching tips
Presentation & Pitching tips
 
JQuery-Tutorial
 JQuery-Tutorial JQuery-Tutorial
JQuery-Tutorial
 
Fcp lecture 01
Fcp lecture 01Fcp lecture 01
Fcp lecture 01
 
Financial intelligent for start ups
Financial intelligent for start upsFinancial intelligent for start ups
Financial intelligent for start ups
 
Microsoft excel beginner
Microsoft excel beginnerMicrosoft excel beginner
Microsoft excel beginner
 
Intro to php
Intro to phpIntro to php
Intro to php
 
How to Use Publicity to Grow Your Startup
How to Use Publicity to Grow Your StartupHow to Use Publicity to Grow Your Startup
How to Use Publicity to Grow Your Startup
 
Why Learn PHP Programming?
Why Learn PHP Programming?Why Learn PHP Programming?
Why Learn PHP Programming?
 
Intro to PHP for Beginners
Intro to PHP for BeginnersIntro to PHP for Beginners
Intro to PHP for Beginners
 
Computer Programming- Lecture 10
Computer Programming- Lecture 10Computer Programming- Lecture 10
Computer Programming- Lecture 10
 
Excel training for beginners
Excel training for beginnersExcel training for beginners
Excel training for beginners
 
phpTutorial1
phpTutorial1phpTutorial1
phpTutorial1
 

Similaire à Themes and layouts

Joomla! Day UK 2009 Basic Templates
Joomla! Day UK 2009 Basic TemplatesJoomla! Day UK 2009 Basic Templates
Joomla! Day UK 2009 Basic TemplatesAndy Wallace
 
Joomla Day UK 2009 Basic Templates
Joomla Day UK 2009 Basic TemplatesJoomla Day UK 2009 Basic Templates
Joomla Day UK 2009 Basic TemplatesChris Davenport
 
Drupal 8: frontend development
Drupal 8: frontend developmentDrupal 8: frontend development
Drupal 8: frontend developmentsparkfabrik
 
Creating Custom Templates for Joomla! 2.5
Creating Custom Templates for Joomla! 2.5Creating Custom Templates for Joomla! 2.5
Creating Custom Templates for Joomla! 2.5Don Cranford
 
Drupal theming - a practical approach (European Drupal Days 2015)
Drupal theming - a practical approach (European Drupal Days 2015)Drupal theming - a practical approach (European Drupal Days 2015)
Drupal theming - a practical approach (European Drupal Days 2015)Eugenio Minardi
 
Drupal Themes
Drupal ThemesDrupal Themes
Drupal Themesakosh
 
Adopt or hack - how to hack a theme in a Drupal way
Adopt or hack - how to hack a theme in a Drupal wayAdopt or hack - how to hack a theme in a Drupal way
Adopt or hack - how to hack a theme in a Drupal wayMarek Sotak
 
Drupal 8 theming deep dive
Drupal 8 theming deep diveDrupal 8 theming deep dive
Drupal 8 theming deep diveRomain Jarraud
 
Keycloak theme customization
Keycloak theme customizationKeycloak theme customization
Keycloak theme customizationRavi Yasas
 
Designing for magento
Designing for magentoDesigning for magento
Designing for magentohainutemicute
 
Intro to Theming Drupal, FOSSLC Summer Camp 2010
Intro to Theming Drupal, FOSSLC Summer Camp 2010Intro to Theming Drupal, FOSSLC Summer Camp 2010
Intro to Theming Drupal, FOSSLC Summer Camp 2010Emma Jane Hogbin Westby
 
7 Theming in Drupal
7 Theming in Drupal7 Theming in Drupal
7 Theming in DrupalWingston
 
ExtBase workshop
ExtBase workshop ExtBase workshop
ExtBase workshop schmutt
 
Melody Designer Training
Melody Designer TrainingMelody Designer Training
Melody Designer TrainingByrne Reese
 

Similaire à Themes and layouts (20)

Joomla! Day UK 2009 Basic Templates
Joomla! Day UK 2009 Basic TemplatesJoomla! Day UK 2009 Basic Templates
Joomla! Day UK 2009 Basic Templates
 
Joomla Day UK 2009 Basic Templates
Joomla Day UK 2009 Basic TemplatesJoomla Day UK 2009 Basic Templates
Joomla Day UK 2009 Basic Templates
 
Drupal 8: frontend development
Drupal 8: frontend developmentDrupal 8: frontend development
Drupal 8: frontend development
 
Drupal theming
Drupal themingDrupal theming
Drupal theming
 
Creating Custom Templates for Joomla! 2.5
Creating Custom Templates for Joomla! 2.5Creating Custom Templates for Joomla! 2.5
Creating Custom Templates for Joomla! 2.5
 
Drupal theming - a practical approach (European Drupal Days 2015)
Drupal theming - a practical approach (European Drupal Days 2015)Drupal theming - a practical approach (European Drupal Days 2015)
Drupal theming - a practical approach (European Drupal Days 2015)
 
Drupal Themes
Drupal ThemesDrupal Themes
Drupal Themes
 
Module 3 - Intro to Bootstrap
Module 3 - Intro to BootstrapModule 3 - Intro to Bootstrap
Module 3 - Intro to Bootstrap
 
Adopt or hack - how to hack a theme in a Drupal way
Adopt or hack - how to hack a theme in a Drupal wayAdopt or hack - how to hack a theme in a Drupal way
Adopt or hack - how to hack a theme in a Drupal way
 
Joomla Templates101
Joomla Templates101Joomla Templates101
Joomla Templates101
 
Drupal 8 theming deep dive
Drupal 8 theming deep diveDrupal 8 theming deep dive
Drupal 8 theming deep dive
 
Keycloak theme customization
Keycloak theme customizationKeycloak theme customization
Keycloak theme customization
 
Design to Theme @ CMSExpo
Design to Theme @ CMSExpoDesign to Theme @ CMSExpo
Design to Theme @ CMSExpo
 
Designing for magento
Designing for magentoDesigning for magento
Designing for magento
 
Creating a basic joomla
Creating a basic joomlaCreating a basic joomla
Creating a basic joomla
 
Intro to Theming Drupal, FOSSLC Summer Camp 2010
Intro to Theming Drupal, FOSSLC Summer Camp 2010Intro to Theming Drupal, FOSSLC Summer Camp 2010
Intro to Theming Drupal, FOSSLC Summer Camp 2010
 
7 Theming in Drupal
7 Theming in Drupal7 Theming in Drupal
7 Theming in Drupal
 
ExtBase workshop
ExtBase workshop ExtBase workshop
ExtBase workshop
 
Creating custom themes in AtoM
Creating custom themes in AtoMCreating custom themes in AtoM
Creating custom themes in AtoM
 
Melody Designer Training
Melody Designer TrainingMelody Designer Training
Melody Designer Training
 

Dernier

Deerfoot Church of Christ Bulletin 5 5 24
Deerfoot Church of Christ Bulletin 5 5 24Deerfoot Church of Christ Bulletin 5 5 24
Deerfoot Church of Christ Bulletin 5 5 24deerfootcoc
 
Certified Amil baba, Black magic specialist in Russia and Kala jadu expert in...
Certified Amil baba, Black magic specialist in Russia and Kala jadu expert in...Certified Amil baba, Black magic specialist in Russia and Kala jadu expert in...
Certified Amil baba, Black magic specialist in Russia and Kala jadu expert in...makhmalhalaaay
 
Top 10 Amil baba list Famous Amil baba In Pakistan Amil baba Kala jadu in Raw...
Top 10 Amil baba list Famous Amil baba In Pakistan Amil baba Kala jadu in Raw...Top 10 Amil baba list Famous Amil baba In Pakistan Amil baba Kala jadu in Raw...
Top 10 Amil baba list Famous Amil baba In Pakistan Amil baba Kala jadu in Raw...Amil Baba Naveed Bangali
 
MEIDUNIDADE COM JESUS PALESTRA ESPIRITA1.pptx
MEIDUNIDADE COM JESUS  PALESTRA ESPIRITA1.pptxMEIDUNIDADE COM JESUS  PALESTRA ESPIRITA1.pptx
MEIDUNIDADE COM JESUS PALESTRA ESPIRITA1.pptxMneasEntidades
 
Christian Charism Ministry - Manifestation of spiritual gifts within the chur...
Christian Charism Ministry - Manifestation of spiritual gifts within the chur...Christian Charism Ministry - Manifestation of spiritual gifts within the chur...
Christian Charism Ministry - Manifestation of spiritual gifts within the chur...mustardseed108
 
Amil baba in Lahore /Amil baba in Karachi /Amil baba in Pakistan
Amil baba in Lahore /Amil baba in Karachi /Amil baba in PakistanAmil baba in Lahore /Amil baba in Karachi /Amil baba in Pakistan
Amil baba in Lahore /Amil baba in Karachi /Amil baba in PakistanAmil Baba Mangal Maseeh
 
Authentic Black magic, Kala ilam expert in UAE and Kala ilam specialist in S...
Authentic Black magic, Kala ilam expert in UAE  and Kala ilam specialist in S...Authentic Black magic, Kala ilam expert in UAE  and Kala ilam specialist in S...
Authentic Black magic, Kala ilam expert in UAE and Kala ilam specialist in S...baharayali
 
The_Chronological_Life_of_Christ_Part_99_Words_and_Works
The_Chronological_Life_of_Christ_Part_99_Words_and_WorksThe_Chronological_Life_of_Christ_Part_99_Words_and_Works
The_Chronological_Life_of_Christ_Part_99_Words_and_WorksNetwork Bible Fellowship
 
Famous Kala Jadu, Black magic specialist in Lahore and Kala ilam expert in ka...
Famous Kala Jadu, Black magic specialist in Lahore and Kala ilam expert in ka...Famous Kala Jadu, Black magic specialist in Lahore and Kala ilam expert in ka...
Famous Kala Jadu, Black magic specialist in Lahore and Kala ilam expert in ka...baharayali
 
Flores de Mayo-history and origin we need to understand
Flores de Mayo-history and origin we need to understandFlores de Mayo-history and origin we need to understand
Flores de Mayo-history and origin we need to understandvillamilcecil909
 
Emails, Facebook, WhatsApp and the Dhamma (English and Chinese).pdf
Emails, Facebook, WhatsApp and the Dhamma  (English and Chinese).pdfEmails, Facebook, WhatsApp and the Dhamma  (English and Chinese).pdf
Emails, Facebook, WhatsApp and the Dhamma (English and Chinese).pdfOH TEIK BIN
 
Famous Kala Jadu, Black magic expert in UK and Kala ilam expert in Saudi Arab...
Famous Kala Jadu, Black magic expert in UK and Kala ilam expert in Saudi Arab...Famous Kala Jadu, Black magic expert in UK and Kala ilam expert in Saudi Arab...
Famous Kala Jadu, Black magic expert in UK and Kala ilam expert in Saudi Arab...baharayali
 
Genesis 1:7 || Meditate the Scripture daily verse by verse
Genesis 1:7  ||  Meditate the Scripture daily verse by verseGenesis 1:7  ||  Meditate the Scripture daily verse by verse
Genesis 1:7 || Meditate the Scripture daily verse by versemaricelcanoynuay
 
Famous Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil baba ...
Famous Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil baba ...Famous Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil baba ...
Famous Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil baba ...baharayali
 
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verifiedConnaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verifiedDelhi Call girls
 
"The Magnificent Surah Rahman: PDF Version"
"The Magnificent Surah Rahman: PDF Version""The Magnificent Surah Rahman: PDF Version"
"The Magnificent Surah Rahman: PDF Version"aijazuddin14
 
Verified Amil baba in Pakistan Amil baba in Islamabad Famous Amil baba in Ger...
Verified Amil baba in Pakistan Amil baba in Islamabad Famous Amil baba in Ger...Verified Amil baba in Pakistan Amil baba in Islamabad Famous Amil baba in Ger...
Verified Amil baba in Pakistan Amil baba in Islamabad Famous Amil baba in Ger...Amil Baba Naveed Bangali
 
Jude: The Acts of the Apostates (Jude vv.1-4).pptx
Jude: The Acts of the Apostates (Jude vv.1-4).pptxJude: The Acts of the Apostates (Jude vv.1-4).pptx
Jude: The Acts of the Apostates (Jude vv.1-4).pptxStephen Palm
 

Dernier (20)

Deerfoot Church of Christ Bulletin 5 5 24
Deerfoot Church of Christ Bulletin 5 5 24Deerfoot Church of Christ Bulletin 5 5 24
Deerfoot Church of Christ Bulletin 5 5 24
 
Certified Amil baba, Black magic specialist in Russia and Kala jadu expert in...
Certified Amil baba, Black magic specialist in Russia and Kala jadu expert in...Certified Amil baba, Black magic specialist in Russia and Kala jadu expert in...
Certified Amil baba, Black magic specialist in Russia and Kala jadu expert in...
 
Top 10 Amil baba list Famous Amil baba In Pakistan Amil baba Kala jadu in Raw...
Top 10 Amil baba list Famous Amil baba In Pakistan Amil baba Kala jadu in Raw...Top 10 Amil baba list Famous Amil baba In Pakistan Amil baba Kala jadu in Raw...
Top 10 Amil baba list Famous Amil baba In Pakistan Amil baba Kala jadu in Raw...
 
MEIDUNIDADE COM JESUS PALESTRA ESPIRITA1.pptx
MEIDUNIDADE COM JESUS  PALESTRA ESPIRITA1.pptxMEIDUNIDADE COM JESUS  PALESTRA ESPIRITA1.pptx
MEIDUNIDADE COM JESUS PALESTRA ESPIRITA1.pptx
 
Christian Charism Ministry - Manifestation of spiritual gifts within the chur...
Christian Charism Ministry - Manifestation of spiritual gifts within the chur...Christian Charism Ministry - Manifestation of spiritual gifts within the chur...
Christian Charism Ministry - Manifestation of spiritual gifts within the chur...
 
Amil baba in Lahore /Amil baba in Karachi /Amil baba in Pakistan
Amil baba in Lahore /Amil baba in Karachi /Amil baba in PakistanAmil baba in Lahore /Amil baba in Karachi /Amil baba in Pakistan
Amil baba in Lahore /Amil baba in Karachi /Amil baba in Pakistan
 
Authentic Black magic, Kala ilam expert in UAE and Kala ilam specialist in S...
Authentic Black magic, Kala ilam expert in UAE  and Kala ilam specialist in S...Authentic Black magic, Kala ilam expert in UAE  and Kala ilam specialist in S...
Authentic Black magic, Kala ilam expert in UAE and Kala ilam specialist in S...
 
The_Chronological_Life_of_Christ_Part_99_Words_and_Works
The_Chronological_Life_of_Christ_Part_99_Words_and_WorksThe_Chronological_Life_of_Christ_Part_99_Words_and_Works
The_Chronological_Life_of_Christ_Part_99_Words_and_Works
 
Famous Kala Jadu, Black magic specialist in Lahore and Kala ilam expert in ka...
Famous Kala Jadu, Black magic specialist in Lahore and Kala ilam expert in ka...Famous Kala Jadu, Black magic specialist in Lahore and Kala ilam expert in ka...
Famous Kala Jadu, Black magic specialist in Lahore and Kala ilam expert in ka...
 
Flores de Mayo-history and origin we need to understand
Flores de Mayo-history and origin we need to understandFlores de Mayo-history and origin we need to understand
Flores de Mayo-history and origin we need to understand
 
Emails, Facebook, WhatsApp and the Dhamma (English and Chinese).pdf
Emails, Facebook, WhatsApp and the Dhamma  (English and Chinese).pdfEmails, Facebook, WhatsApp and the Dhamma  (English and Chinese).pdf
Emails, Facebook, WhatsApp and the Dhamma (English and Chinese).pdf
 
famous No 1 astrologer / Best No 1 Amil baba in UK, Australia, Germany, USA, ...
famous No 1 astrologer / Best No 1 Amil baba in UK, Australia, Germany, USA, ...famous No 1 astrologer / Best No 1 Amil baba in UK, Australia, Germany, USA, ...
famous No 1 astrologer / Best No 1 Amil baba in UK, Australia, Germany, USA, ...
 
Famous Kala Jadu, Black magic expert in UK and Kala ilam expert in Saudi Arab...
Famous Kala Jadu, Black magic expert in UK and Kala ilam expert in Saudi Arab...Famous Kala Jadu, Black magic expert in UK and Kala ilam expert in Saudi Arab...
Famous Kala Jadu, Black magic expert in UK and Kala ilam expert in Saudi Arab...
 
Genesis 1:7 || Meditate the Scripture daily verse by verse
Genesis 1:7  ||  Meditate the Scripture daily verse by verseGenesis 1:7  ||  Meditate the Scripture daily verse by verse
Genesis 1:7 || Meditate the Scripture daily verse by verse
 
Famous Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil baba ...
Famous Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil baba ...Famous Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil baba ...
Famous Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil baba ...
 
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verifiedConnaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
 
"The Magnificent Surah Rahman: PDF Version"
"The Magnificent Surah Rahman: PDF Version""The Magnificent Surah Rahman: PDF Version"
"The Magnificent Surah Rahman: PDF Version"
 
Famous No -1 amil baba in Hyderabad ! Best No _ Astrologer in Pakistan, UK, A...
Famous No -1 amil baba in Hyderabad ! Best No _ Astrologer in Pakistan, UK, A...Famous No -1 amil baba in Hyderabad ! Best No _ Astrologer in Pakistan, UK, A...
Famous No -1 amil baba in Hyderabad ! Best No _ Astrologer in Pakistan, UK, A...
 
Verified Amil baba in Pakistan Amil baba in Islamabad Famous Amil baba in Ger...
Verified Amil baba in Pakistan Amil baba in Islamabad Famous Amil baba in Ger...Verified Amil baba in Pakistan Amil baba in Islamabad Famous Amil baba in Ger...
Verified Amil baba in Pakistan Amil baba in Islamabad Famous Amil baba in Ger...
 
Jude: The Acts of the Apostates (Jude vv.1-4).pptx
Jude: The Acts of the Apostates (Jude vv.1-4).pptxJude: The Acts of the Apostates (Jude vv.1-4).pptx
Jude: The Acts of the Apostates (Jude vv.1-4).pptx
 

Themes and layouts

  • 1. Themes & Layout Tutorial Copyright © 2000-2006 Liferay, Inc. All Rights Reserved. No material may be reproduced electronically or in print without written permission from Liferay, Inc.
  • 2. Objectives 1. Customize your own Liferay Theme a. Introduction to Liferay Themes b. Deploy a Liferay Theme c. Modify example theme 2. Customize your own Liferay Layout a. Create a custom 2-3 layout - (2-3 = 2 column row on top of a 3 column row) a. Select different layout templates
  • 3. Introduction to Liferay Themes With themes, you can quickly & completely redesign a website layout with a single war file. Lets see some examples: - Themes from Liferay Website: - Liferay.com -> downloads -> community themes
  • 4.
  • 5.
  • 6.
  • 7.
  • 8. Exercise 1 Change the Liferay Theme a. Startup Tomcat b. On the Liferay website “Page Settings” -> “Look and Feel” -> Select Theme
  • 9. Portal • Creating a theme can be a very time consuming process, depending on what exactly needs to be done. • Step 1: Identify the major components Most themes contain the following elements: • Banner • Navigation • Portlet area • Some themes that are more graphically intensive also have a top, bottom, and left and right sides.
  • 10. Identify the major components
  • 11. Identify the major components
  • 12. Identify the major components
  • 13. Portlets • Step 2: Identify the portlet areas – The next step is to identify your portlet areas. All portlets are composed of 12 pieces.
  • 14. • Look for all 12 pieces / images of the portlet • Notice that some portlets have wide borders and some have thin, it all depends on how your portlet is supposed to look • If there are shadows you need to incorporate the entire shadow in your image.
  • 15. Exercise 2 Deploy your own “example.war” theme and change Liferay’s homepage to use that theme. This theme will help distinguish each of the pieces of the theme to give you practice in editing themes. Deploying your theme: 1. Startup Tomcat (if not already) 2. Copy “example.war” to your themes folder: C:ProjectsTrainingextthemesexample.war 3. “ant deploy” from your themes folder 4. Reload the page and select this theme
  • 16. Step 3: Putting it all together Portlet Area You will need to cut your portlets up into 12 images like shown above, then populate the 12 portlet areas based on the images you cut up (set the height, width, and file name of each images) Hint: look for these lines css_cached.vm: extthemesexample.warhtmlthemesexampletemplatescss_cached.vm – .portlet-header-bar-middle – .portlet-header-bar-right – .portlet-header-bar-left – .portlet-corner-ul – .portlet-corner-ur – .portlet-corner-br – .portlet-corner-bl – .portlet-border-top – .portlet-border-left – .portlet-border-right – .portlet-border-bottom
  • 17. Banner To build the banner you need to edit: css_cached.vm: extthemesexample.warhtmlthemesexampletemplatescss_cached.vm • .layout-banner-left • .layout-banner-middle • .layout-banner-right Usually only the middle is required, but if the theme needs to stretch along the x axis you will need left and right as well.
  • 18. Top, Bottom, Left, Right Top and Bottom Decorations css_cached.vm: extthemesexample.warhtmlthemesexampletemplatescss_cached.vm – #layout-top-decoration – #layout-corner-ul – #layout-corner-ur – #layout-bottom-decoration – #layout-corner-bl – #layout-corner-br Use these to build your top and bottom decorations Left and Right Sides css_cached.vm: extthemesexample.warhtmlthemesexampletemplatescss_cached.vm – #layout-box-left – #layout-box-right Look for these to edit the sides
  • 19. Exercise 3 Modify the example.war theme to look like the one below
  • 20. • Helpful Notes: – border-left: 1px dotted black; – In Firefox’s web developer extensions press (CTRL-SHFT-F) for helpful HTML info • Files to modify: – extthemesexample.warhtmlthemesexampletemplates • css_cached.vm (css) • portal_normal.vm (layout) – extthemesexample.warWEB-INF • liferay-look-and-feel.xml ($colorScheme)
  • 21. Content and Layout • Why new layouts? – Variety is good – Not all sites are the same – Sometimes the defaults just don’t work for your needs • How do we do it? – Layouttpl (Layout Template) • 4.0.0 makes this process so much easier!
  • 22. Prepare the layouts folder • In the EXT directory navigate to the layouttpl folder • Create a folder called sample.war here > extlayouttplsample.war • In sample.war, create two folders: WEB-INF and html > extlayouttplsample.warWEB-INF > extlayouttplsample.warhtml • We have now setup the basic folder structure for layouts. This is the process that must always be followed for new layouts
  • 23. Preparing supporting files • Inside the WEB-INF folder that was just created, create a file and name it liferay-layout-templates.xml > extlayouttplsample.warWEB-INF liferay-layout-templates.xml • Now create one more file here, and call it web.xml > extlayouttplsample.warWEB-INF web.xml
  • 24. liferay-layout-templates.xml liferay-layout-templates.xml extlayouttplsample.warWEB-INFliferay-layout-templates.xml <?xml version="1.0"?> <!DOCTYPE layout-templates PUBLIC "-//Liferay//DTD Layout Templates 4.0.0//EN" "http://www.liferay.com/dtd/liferay-layout-templates_4_0_0.dtd"> <layout-templates> <custom> <layout-template id="training" name="training"> <template-path>/html/layouttpl/custom/training.tpl</template-path> </layout-template> </custom> </layout-templates>
  • 25. What did that do? • Layout-templates is our root element, it tells Liferay that we are defining new layouts • Custom tells Liferay that this is not a built in template, but something new • Layout-template-id and name let Liferay know what to – Display in add content – Set as the unique id for this template • Template-path tells Liferay where to find the template structure (tpl) file
  • 26. web.xml web.xml extlayouttplsample.warWEB-INFweb.xml <?xml version="1.0"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <display-name>sample</display-name> <listener> <listener- class>com.liferay.portal.kernel.servlet.LayoutTemplateContextListener</listener -class> </listener> </web-app>
  • 27. Preparing the tpl file • In extlayouttplsample.warhtml, – create a “layouttpl” folder: • Inside layouttpl, – create a “custom” folder: • Inside custom, – create the file “training.tpl” • extlayouttplsample.warhtmllayouttplcustomtraining.tpl
  • 28. 2-3 column layout code <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td valign="top" width="45%">$processor.processColumn("column-1")</td> <td width="10%">&nbsp;</td> <td valign="top" width="45%">$processor.processColumn("column-2")</td> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td valign="top" width="30%">$processor.processColumn("column-3")</td> <td width="5%">&nbsp;</td> <td valign="top" width="30%">$processor.processColumn("column-4")</td> <td width="5%">&nbsp;</td> <td valign="top" width="30%">$processor.processColumn("column-5")</td> </tr> </table>
  • 29. Deploy Layouts • Navigate to ext/layouttpl • Run ant deploy • Open a web browser to http://localhost • Login • For this example, let’s create a new page
  • 30. Let’s add content! • Click Add Content • Select your Layout Template • Click test and add (portlets with small width): • Hello Laszlo • Hello Velocity • Hello World • Your sample portlet
  • 31. Finish it • Refresh your page • Drag all the portlets around to fill the five columns
  • 32. Summary • You should now know: – How to create a basic theme – How to create custom layouts – How to add new content pages – How to use change the layout template • Things to practice – The more CSS and HTML you know, the better off you will be – Getting a theme just right takes time. Don’t lose faith, it is possible!
  • 33. Congratulations! Congratulations! You’ve just modified your own theme! Login: test@liferay.com Password: test To hot deploy JSR-168 compliant portlets, Liferay layout templates, or Liferay themes just drop your *.war files in C:/home/liferay/deploy Sample portlets can be found here: http://www.liferay.com/web/guest/downloads/samples For more information on hot deploy, click here: http://content.liferay.com/4.0.0/docs/developers/ch06s01.html
  • 34. Revision History Scott Lee 11/2/2006 - Created & Updated slides from Brett’s Theme Docs & Layout Ppt Scott Lee 11/10/2006 - Fixed typos (Liferay-layout-templates.xml, tpl filepath) - added “helpful notes” for excercise

Notes de l'éditeur

  1. Its recommeded to build a theme by editing an existing one instead of creating every file from scratch.