isidore/example/site/blog/000-first.html.php

10 lines
183 B
PHP
Raw Permalink Normal View History

2022-11-08 14:58:20 +00:00
<?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");
?>