A blog system based on plain-files.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
534 B

7 months ago
7 months ago
7 months ago
7 months ago
  1. # Python Flask Blog
  2. This is a simple blog based on Pythons Flask framework.
  3. ## Installation
  4. - `pip3 install requirements.txt` - install depenencies
  5. ## Usage
  6. - run `python app.py`
  7. - blog is available on port 5000
  8. ### Create entries
  9. Blog entries are managed by plain html files in the `templates/entry/` directory.
  10. The first line of each document is reserved as the title of the document.
  11. You have to specify the filetype by extension.
  12. Currently supported filetypes are:
  13. - HTML (.html)
  14. - Markdown (.md)
  15. ## To-Do
  16. - CSS upgrade