Liferay Portal (二) 主题开发

一、新建

Liferay Portal (二) 主题开发_第1张图片

Liferay Portal (二) 主题开发_第2张图片

完成后点击【NEXT】选择模板语言,我们用的是Velocity模板(VM)语言

Liferay Portal (二) 主题开发_第3张图片

Liferay Portal (二) 主题开发_第4张图片

二、代码编写

Liferay Portal (二) 主题开发_第5张图片

portal_normal.vm源码



#parse ($init)




	$the_title - $company_name

	

	$theme.include($top_head_include)




#language ("skip-to-content")

$theme.include($body_top_include)

#if ($is_signed_in)
	#dockbar()
#end

#if ($selectable) $theme.include($content_include) #else $portletDisplay.recycle() $portletDisplay.setTitle($the_title) $theme.wrapPortlet("portlet.vm", $content_include) #end
$theme.include($body_bottom_include) $theme.include($bottom_include)

   top.vm源码

      
left.vm
      

navigation.vm

      

content.vm

#if ($selectable) $theme.include($content_include) //内容显示区 #else $portletDisplay.recycle() $portletDisplay.setTitle($the_title) $theme.wrapPortlet("portlet.vm", $content_include) #end

你可能感兴趣的:(Liferay,Velocity)