Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Blog Module /

Discuss the Blog Module.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Create Multiple Custom Blog Holder Templates?


Go to End


3 Posts   2622 Views

Avatar
mrmadrone

Community Member, 2 Posts

6 February 2013 at 12:39pm

Edited: 06/02/2013 12:40pm

I'd like to create multiple custom blog holder templates, so I don't want to necessarily use a modified BlogHolder.ss file that I drop into my theme's /Layout directory.

Here's what I tried:

  • Creating a Blog Holder called "Superblog" in the CMS.
  • Creating a SuperblogBlogHolder.php file in /code with the following:

    <?php
    class SuperblogBlogHolder extends BlogHolder {
    }
    class SuperblogBlogHolder_Controller extends BlogHolder_Controller {
    }
    
    ?>

  • Creating SuperblogBlogHolder.ss in /Layout within my theme
  • Dropping BlogHolder.ss in the theme's /templates directory with simply $Layout in the code

That definitely doesn't work. It loads Superblog, but with no styling or any of the custom stuff I added in the SuperblogBlogHolder.ss file

If I zap that BlogHolder.ss file from /templates, Superblog loads with all the site's styling, but again none of the custom template code created in the .ss file.

So either way I'm not getting Superblog to load the custom template code. Am I headed in the right direction here, or am I totally off base? Thanks!

Avatar
copernican

Community Member, 189 Posts

13 February 2013 at 2:14am

Is your "Superblog" page in the CMS page type set to Superblog Blog Holder or Blog Holder?

Avatar
mrmadrone

Community Member, 2 Posts

13 February 2013 at 2:44pm

Whoops - yep, silly mistake. I also hadn't set a CMS-friendly name in SuperblogBlogHolder.php - it was showing just as Blog Holder in the CMS, so I totally overlooked that it was there as an option.

Thanks