I'm not completely sure I know what you're asking, but it sounds like you need to know where the "homepage" of a Plone site comes from. Basically, the way I do it to override the default and control the look and feel of the content pane of my site is to create a new python script called "index_html.py", and it needs to have in it one line: return context.homepage() homepage.pt then must exist in a "skin" (see portal_skins in the ZMI) or "custom" to be found. This is now your "main" page and can be edited to do whatever you want using HTML, tal expressions, etc. In the ZMI, under portal_properties/site_properties there is a "default_page" list of values. Here is where I specify "index_html" as the first line item. Jim
_____ From: [EMAIL PROTECTED] on behalf of Dale DeWitt Sent: Sun 9/17/2006 3:38 PM To: [email protected] Subject: Re: [Setup] How De I Edit the Home Page? Try http://zope-europe.org/scl/2005/12/29/kupufieldwidth/index.html <http://zope-europe.org/scl/2005/12/29/kupufieldwidth/index.html> for starters. beno-2 wrote: > > Hi; > How do I do it? I would have thought that would be easy, but not if you > don't know where to go to edit "main"!! Help! > beno > > _______________________________________________ > Setup mailing list > [email protected] > http://lists.plone.org/mailman/listinfo/setup <http://lists.plone.org/mailman/listinfo/setup> > > -- View this message in context: http://www.nabble.com/How-De-I-Edit-the-Home-Page--tf2287099.html#a6353547 <http://www.nabble.com/How-De-I-Edit-the-Home-Page--tf2287099.html#a6353547> Sent from the Plone Setup forum at Nabble.com. _______________________________________________ Setup mailing list [email protected] http://lists.plone.org/mailman/listinfo/setup <http://lists.plone.org/mailman/listinfo/setup> _______________________________________________ Setup mailing list [email protected] http://lists.plone.org/mailman/listinfo/setup
