views:

40

answers:

2

Hello,

I'm working on creating a custom homepage in Drupal. What would be the best way to accomplish this? I was thinking on creating a custom content type called "homepage" and just edit it when needed. However, I don't know if this is really recommended or not.

Thanks.

+1  A: 

Use page content type for this and it's depend on how do you want to look this page.
Other way is theming, for example via page-front.tpl.php, or node-page-[#NID].tpl.php, and so on. Don't forget about css styling.
If you don't want code, you can use modules Panels, Blocks, Views, etc.

Nikit
Thanks a lot. I think I'll try the page-front.tpl!
Johann
+3  A: 

To create a home page that's distinctive from the rest of your site, the generally recommended approach is to create and edit a file called page-front.tpl.php within your theme directory. See this tutorial page, along with the links on it regarding tips on theming, for more information.

Dan U.

related questions