About Flask Blog

Flaskblog is a very simple blog made with Flask and Flask-Flatpages

Screenshot of flaskblog

Flaskblog on GitHub: github.com/insomnux/flaskblog.

Demo on insomnux.pythonanywhere.com/

Features:

Posts are added in markdown format in the pages directory. Posts must have YAML metadata, followed by a blank line and an --- delimiter. Followed by the page or post body.

Example:

title: My post
date: 2018-12-12
descr: A new awesome post I wrote
tags: [post, new, awesome]
img: cutecat.jpg
imgalt: Photo of my cute cat

---

# Lorem Ipsum

Metadata tags used:

tag used for
title post or page title
date publication date - mandatory for posts
descr page or post description
tags tags for the post
img filename of a picture uploaded in static/pictures
imgalt alt property for picture (required)
static static: True signifies that an article is a post, not page

Credits: