10 lines
183 B
PHP
10 lines
183 B
PHP
<?php
|
|
include("site/blog/000-first.cfg.php");
|
|
$title = $blog_title;
|
|
include("templates/header.html.php");
|
|
?>
|
|
<p>My first blog post.</p>
|
|
<?php
|
|
include("templates/footer.html.php");
|
|
?>
|