Files
isidore/example/site/blog/000-first.html.php
T
2022-11-08 15:58:20 +01:00

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");
?>