A super simple, self-hosted Journal application that's written in PHP.
Journal was created by Kev Quirk and uses the following packages:
- Simple.css - to make it look pretty
- Parsedown - to add Markdown support
If you want to update the title and description that are shown on the header of the homepage, just edit the config.php
file.
<?php
return [
'title' => "Kev's Journal", // Edit this line to change the title
'description' => "This is my personal journal where I document my thoughts and experiences." // Edit this line to change the description
];