aboutsummaryrefslogtreecommitdiff
path: root/src/pages/blog/_template.php
blob: dbaeff6e8e6c2bcd22b376ed638e09f2b951ea99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

    $blog_title = "TEMPLATE";

    ob_start();
?>

<h1>TEMPLATE PAGE</h1>

<?php

    $blog_content = ob_get_clean();

    include "_builder.php";

?>