aboutsummaryrefslogtreecommitdiff
path: root/src/pages/thoughts.php
blob: 0c4d6a0d6fe0fe623da13ede3819bd7ead6e439d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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";

?>