By jadams1-1 on
I need to have "section pages" which are essentially direct links off of the front page. In these section pages I need to have a static "top" part that includes pictures and some text, followed by a "bottom" part which is mostly dynamic content (views blocks). The static content will get updated on a weekly basis. What is the proper way to do this?
Thanks in advance
John
Comments
You could just make a Page.
You could just make a Page. The content would be static and the sidebars (or other block areas) will still be there.
Arp Laszlo
www.inkwire.net
Arp Laszlo
bricksandclicks.marketing
design / theming / development / consulting
Ok so I just alias the Page
Ok so I just alias the Page to the "section" URL and modify the Page whenever static updates are necessary?
Would it be better/possible to insert a static 'block' on top of a views page? That way if the 'sections' grow I can make a single view and add static blocks to the top of it rather than make many different nodes.
Thanks for your response, it's a big help as I continue to learn Drupal.
John
The modules that let you...
include views and blocks inside a node will be helpful to you. Alternatively, you can code your page in php to include your static content from a node (e.g. /mainstory), then also include views and blocks below that.
I have found it easier to use php to do this rather than the modules which include views and blocks using filters, but depending on your layout needs, either method will work.
There are a couple examples inside the php snippets that show you how to include a block (including blocks created by views) inside a static page. These have been most helpful to me.
Here's an example I use for my search and rescue association. It displays 5 blocks, pulling from different parts of the site plus a newsfeed. It is then themed with css:
Hope this helps!
Looks like a great solution!
Thank you! I think this gives me a good way forward for now.