By smuthu on
Administer -> Site building -> Blocks
In Drupal, basically we can set the Block in header,footer,right side, right side through out whole site. It is called "Single layout" for whole site.
But i would like to set "Multiple layout" to view Home page in one layout and other pages in another layout.
Any Idea?
Comments
Yea, u need to read this...
Hey:
http://drupal.org/node/23348
Also, use of sections module works, and you can accomplish some of what you want (NOT best practice) by hacking the hell out of templates. Don't hack sections into templates.
Read this:
http://www.lullabot.com/articles/hacking_phptemplate
Also, the comment below is (yea yea) definitely the easiest way to get started, though it won't give you site section overrides, just home page (good 'nuff for most simple sites)
That should do ya. ;-)
--------------------------------------------------
http://WorkHabit.com and http://www.WorkHabit.org
In your theme directory,
In your theme directory, there should be a main page called "page.tpl.php". This defines what a page on your site looks like.
Copy it and name the file "front.tpl.php". Now start hacking this. It will be your front page.
Thanx...
I followed ur way. it works fine. thanks a lot..