From ed4f454fd789446cb98f93aaf3648211644d9ca6 Mon Sep 17 00:00:00 2001 From: Marten <43725244+Tiyn@users.noreply.github.com> Date: Sat, 23 May 2020 11:28:07 +0000 Subject: [PATCH 1/2] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 24f10f9..fb5abf4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Python Flask Blog -This is a blog based on Pythons Flask framework. +This is a simple blog based on Pythons Flask framework. ## Installation @@ -15,3 +15,8 @@ This is a blog based on Pythons Flask framework. Blog entries are managed by plain html files in the `templates/entry/` directory. The first line of each document is reserved as the title of the document. + +## To-Do + +- CSS pgrade +- Markdown support From 0fa635de7d5689e1dbfb0b1394abc2dcc13359a2 Mon Sep 17 00:00:00 2001 From: Marten <43725244+Tiyn@users.noreply.github.com> Date: Sat, 23 May 2020 17:32:02 +0000 Subject: [PATCH 2/2] Update app.py --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index d181e88..4a7c4eb 100644 --- a/app.py +++ b/app.py @@ -94,7 +94,7 @@ def get_rss_string(): filename = filename.split('.',1)[0] content_string += '\n' content_string += '' + title + '\n' - content_string += '' + '/index.html#' + filename + '\n' + content_string += '' + website + '/index.html#' + filename + '\n' content_string += '' + datetime.fromtimestamp(os.path.getctime(file)).strftime('%Y-%m-%d') + '\n' content_string += '' for line in text: