Howdy Folks

I'm looking for a very simple blog script, and would like to know if anyone's got some recommendations.

What I'd like is a bit old school and not MVC.

The admin can be done anyway, it's the front end implementation I'm interested in.

Ideally it'll be a class (but that's not required) that you can add to any page to have a working blog. Here's some code to explain what I mean:

<?php
$blog = new AmazingSimpleBlog(); // All the config data, required posts etc read and added to this object.
?>
<html>
<head>
<title><?php echo $blog->details['title'];?></title>
</head>
<body>
<h1><?php echo $blog->details['name'];?></h1>
<?php
foreach($blog->posts as $post)
{
// post html etc.
}
</body>
</html>

Does anyone know of anything like this in existance? The problem I'm finding is that many people would like a simple blog (no bells or whistles), but they just want to integrate it into an existing site - they don't want to worry about separate templates etc.

If there's nothing like this that already exists I'll make a script... 🙂

Thanks!

    Write a Reply...