Bard is a simple blog management system to create, update, delete and view markdown files.
reads posts and renders main page
reads post and renders editor page
creates a new post with given title and text
{
"title" : "Sample Post",
"text" : "# Header\nThis is a sample text with *italic* and **bold**."
}
updates post with new title and text
{
"filename" : "sample-post",
"title" : "New Title",
"text" : "New Text"
}
deletes post
{
"filename" : "sample-post"
}