diff --git a/cgi-bin/uebung07/posts-show.py b/cgi-bin/uebung07/posts-show.py index 3b60c50..f090bd9 100755 --- a/cgi-bin/uebung07/posts-show.py +++ b/cgi-bin/uebung07/posts-show.py @@ -19,7 +19,7 @@ for i in file_names: data = open(i, "r") data = json.load(data) print('
') - print(str(data['title']) + "
Datum: " + str(data['prettytime'])) + print(str(data['title']) + "
Datum: " + str(data['published'])) print('
') print(str(data['content']) + '

') for k in data['tags']: