<?php
$thought_title = "thoughts";
ob_start();
?>
<h1>thoughts</h1>
<p>here lies a forever-expanding set of my Thoughts. currently my head is empty and thus i have no thoughts.</p>
<?php
$thought_content = ob_get_clean();
include "thoughts/_builder.php";
?>