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

10 lines
183 B
PHP
Raw Normal View History

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