Drupal
And we're back!
After months of neglect, I am finally writing a new post! As I dove head-first into the world of web consulting, I got too busy to keep this site up-to-date. But now I'm back--still busy, just better organized.
Why Drupal?
Drupal gets considerable praise for being versatile, flexible, and open. At the same time, it is often criticized for being difficult to configure, with a large learning curve even for seasoned developers. So given the criticism, why do I use it? And why do I recommend it to clients? This article provides an overview of Drupal, and in doing so, explains why I stake my business on it.
I finally got a blog header
<?php if (arg(0) == 'blog' || $node->type == 'blog'): ?>
<?php
$block = module_invoke('bloginfo', 'block', 'view', '0');
print $block['content'];
?>
<?php endif; ?>
This shouldn't be so difficult. I hope somebody has already created a Drupal theme that handles this by default. If not, maybe I should create one.
Oh, one more thing: even with this, I could not find a way to make the block title appear. I had to write the block title within the bloginfo block content.
